Overview
This page provides concrete examples of semiconductor analysis using SemiCode Analyzer. Each example shows the input values, electron configurations, valence electron calculations, and resulting material types.How semiconductor doping works
Semiconductor doping involves introducing impurity atoms into a pure semiconductor crystal to modify its electrical properties:- Host material: Typically has 4 valence electrons (Group 14: Si, Ge)
- N-type dopant: Has 5 valence electrons (Group 15: P, As, Sb) - provides excess electrons
- P-type dopant: Has 3 valence electrons (Group 13: B, Al, Ga) - creates holes
- Intrinsic: Same material or materials with matching valence electrons
Silicon-based examples
Silicon (Si, atomic number 14) is the most common semiconductor material in electronics.- N-type doping
- P-type doping
- Intrinsic
- Aluminium doping
Silicon + Phosphorus → N-type semiconductor
Input:- Element A (Host): 14 (Silicon)
- Element B (Dopant): 15 (Phosphorus)
- Fermi level shifts closer to the conduction band
- Increased electron density in conduction band
- Donor energy level just below conduction band
- N-type region in diodes and transistors
- Solar cell contacts
- Integrated circuit components
Germanium-based examples
Germanium (Ge, atomic number 32) was the first widely used semiconductor material.Germanium + Phosphorus → N-type
Germanium + Phosphorus → N-type
Input:Phosphorus (P):Result:Properties:
- Element A (Host): 32 (Germanium)
- Element B (Dopant): 15 (Phosphorus)
- N-type germanium semiconductor
- Excess electrons as charge carriers
- Lower band gap than silicon (0.66 eV vs 1.12 eV)
- Higher electron mobility than silicon
- Early transistors (1940s-1960s)
- High-frequency devices
- Infrared detectors
- Modern high-speed electronics
Germanium + Boron → P-type
Germanium + Boron → P-type
Input:Boron (B):Result:Properties:
- Element A (Host): 32 (Germanium)
- Element B (Dopant): 5 (Boron)
- P-type germanium semiconductor
- Excess holes as charge carriers
- Higher hole mobility than silicon
- More temperature sensitive than silicon
- Point-contact transistors
- Radiation detectors
- Specialized applications requiring high mobility
Germanium + Germanium → Intrinsic
Germanium + Germanium → Intrinsic
Input:Germanium (Ge) - Dopant:Result:Properties:
- Element A (Host): 32 (Germanium)
- Element B (Dopant): 32 (Germanium)
- Pure germanium semiconductor
- Small band gap (0.66 eV)
- Higher intrinsic carrier concentration than silicon
- More conductive than intrinsic silicon at room temperature
| Property | Germanium | Silicon |
|---|---|---|
| Band gap | 0.66 eV | 1.12 eV |
| Max temperature | ~85°C | ~150°C |
| Electron mobility | 3900 cm²/V·s | 1400 cm²/V·s |
| Historical use | 1940s-1960s | 1960s-present |
Germanium + Arsenic → N-type
Germanium + Arsenic → N-type
Input:Arsenic (As):Result:Properties:
- Element A (Host): 32 (Germanium)
- Element B (Dopant): 33 (Arsenic)
- N-type germanium with arsenic dopant
- Common dopant in germanium technology
- Similar atomic size to germanium (better lattice match than phosphorus)
- Lower ionization energy than phosphorus in germanium
- Preferred N-type dopant for germanium devices
- Better solubility in germanium than phosphorus
- Used in modern germanium-based MOSFETs
Understanding the calculation logic
The application determines material type using this algorithm (fromsrc/utils/chemistry.js:40-48):
- Intrinsic: Both elements have 4 valence electrons
- N-type: One element has 4, the other has 5 valence electrons
- P-type: One element has 4, the other has 3 valence electrons
- Invalid: Any other combination (e.g., 2+6, 3+3, 5+5)
Invalid combinations
Not all element combinations produce valid semiconductors:Common dopants by group
Group 13 (P-type dopants)
- Boron (B): Most common, small atomic radius
- Aluminium (Al): Alternative dopant, larger radius
- Gallium (Ga): Used in GaAs and other III-V semiconductors
- Indium (In): Heavier dopant, special applications
Group 14 (Semiconductor hosts)
- Carbon (C): Diamond semiconductors (wide band gap)
- Silicon (Si): Most common, industry standard
- Germanium (Ge): High mobility, specialized uses
- Tin (Sn): Experimental semiconductor applications
Group 15 (N-type dopants)
- Nitrogen (N): Limited use, small radius
- Phosphorus (P): Most common for silicon
- Arsenic (As): Preferred for germanium, used in silicon
- Antimony (Sb): Heavy dopant, slow diffusion
Visualizations in the application
When you run these examples in SemiCode Analyzer, you’ll see:- Electron configuration diagrams: Shows the shell structure for both elements
- Energy band diagram: Displays the position of the Fermi level
- N-type: Fermi level near conduction band (top 25%)
- P-type: Fermi level near valence band (bottom 75%)
- Intrinsic: Fermi level in the middle (50%)
- Crystal lattice structure: Visual representation of atom arrangement and dopant placement
Practical exercise
Try these combinations in the application:- Si (14) + P (15) → Verify N-type output
- Si (14) + B (5) → Verify P-type output
- Ge (32) + As (33) → Verify N-type output
- Si (14) + Ga (31) → Verify P-type output (Gallium: 4s2 4p1, 3 valence electrons)
- C (6) + Si (14) → Check the result (both have 4 valence electrons)
Further reading
To learn more about semiconductor physics and doping:- Electron configuration: See the calculation guide
- Material types: See the semiconductor types
- Periodic table data: See the periodic table reference
