Home Knowledge Base Review SEM

Review SEM is high-resolution scanning electron microscopy used to inspect detected defects — providing detailed visual analysis of particles, pattern defects, and material anomalies after automated optical inspection flags potential issues, enabling root cause analysis and process improvement in semiconductor manufacturing.

What Is Review SEM?

Why Review SEM Matters

Review SEM Workflow

1. Defect Detection: Optical inspection (brightfield, darkfield) finds anomalies. 2. Coordinate Transfer: Defect locations sent to SEM. 3. Automated Navigation: SEM moves to each defect site. 4. High-Res Imaging: Capture detailed images at multiple magnifications. 5. Classification: Manual or AI-based defect categorization. 6. Analysis: Determine root cause and corrective actions.

Defect Types Identified

Particles: Contamination from environment, equipment, or materials. Scratches: Mechanical damage from handling or processing. Pattern Defects: Lithography issues, etch problems, CMP non-uniformity. Residues: Incomplete cleaning, polymer buildup. Voids: Missing material in films or interconnects. Bridging: Unwanted connections between features.

SEM Imaging Modes

Secondary Electron (SE): Surface topography, best for particles and scratches. Backscattered Electron (BSE): Material contrast, composition differences. Energy-Dispersive X-ray (EDX): Elemental analysis for particle identification.

Quick Example

# Automated Review SEM workflow
defects = optical_inspection.get_defects(threshold=0.8)

for defect in defects:
    # Navigate to defect
    sem.move_to_coordinates(defect.x, defect.y)
    
    # Capture images
    low_mag = sem.capture_image(magnification=1000)
    high_mag = sem.capture_image(magnification=10000)
    
    # Classify defect
    defect_type = classifier.predict(high_mag)
    
    # EDX analysis if needed
    if defect_type == "particle":
        composition = sem.edx_analysis()
        defect.material = composition
    
    defect.classification = defect_type
    defect.images = [low_mag, high_mag]

Automatic Defect Classification (ADC)

Modern review SEM systems use AI to automatically classify defects:

Integration

Review SEM integrates with:

Best Practices

Typical Metrics

Review SEM is essential for yield learning — bridging the gap between automated defect detection and actionable process improvements, enabling fabs to quickly identify and eliminate yield-limiting defects through detailed visual and compositional analysis.

review semmetrology

Explore 500+ Semiconductor & AI Topics

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