Monolithically integrated VO2 Mott oscillators for energy-efficient spiking neurons. Metal-insulator transition devices for neuromorphic hardware. Activation: VO2 oscillator, Mott neuron, metal-insulator transition, energy-efficient spiking.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill vo2-mott-oscillator-spiking-neurons --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Vo2 Mott Oscillator Spiking Neurons?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-vo2-mott-oscillator-spiking-neurons-67e22f74)More formats (shields.io, HTML) on the badges page.
---
name: vo2-mott-oscillator-spiking-neurons
description: "Monolithically integrated VO2 Mott oscillators for energy-efficient spiking neurons. Metal-insulator transition devices for neuromorphic hardware. Activation: VO2 oscillator, Mott neuron, metal-insulator transition, energy-efficient spiking."
---
# VO2 Mott Oscillator Spiking Neurons
> Monolithically integrated VO2 Mott oscillators as compact, energy-efficient artificial spiking neurons for brain-inspired non-Boolean computing.
## Metadata
- **Source**: arXiv:2604.21487
- **Authors**: Fabio Bersano, Cyrille Masserey, Vanessa Conti, et al.
- **Published**: 2026-04-23
- **Category**: cond-mat.mtrl-sci, cs.ET, physics.app-ph
## Core Methodology
### Key Innovation
This work demonstrates **monolithically integrated VO2 Mott oscillators** that:
- Provide compact, energy-efficient spiking neuron implementations
- Leverage the metal-insulator transition (MIT) for intrinsic oscillation
- Enable intrinsic error tolerance and parallelism
- Overcome deployment limitations of traditional neuromorphic hardware
### Technical Framework
#### 1. VO2 Device Physics
- **Metal-Insulator Transition**: First-order phase transition at ~68°C
- **Negative Differential Resistance**: Enables relaxation oscillations
- **Ultra-fast Switching**: Sub-nanosecond transition times
- **Non-volatility**: Hysteretic behavior provides memory
#### 2. Oscillator Design
```
Device Structure:
- VO2 thin film (typically 50-200 nm)
- Heater element for temperature control
- Capacitive coupling for spike integration
- Output readout circuit
```
#### 3. Spiking Dynamics
- **Leaky Integrate-and-Fire**: Natural accumulation and reset
- **Refractory Period**: Post-spike cooling phase
- **Tunable Excitability**: Via bias current/temperature
- **Stochastic Spiking**: Thermal noise enables probabilistic behavior
## Implementation Guide
### Fabrication Process
1. **Substrate Preparation**: Si/SiO2 or sapphire
2. **VO2 Deposition**: Pulsed laser deposition or sputtering
3. **Patterning**: Electron beam lithography
4. **Contact Metallization**: Ti/Au or Pt electrodes
5. **Passivation**: Protective encapsulation layer
### Operating Conditions
```python
# Typical parameters
transition_temperature = 68 # °C
operating_voltage = 2.0 # V
operating_current = "10-100 μA"
oscillation_frequency = "kHz-MHz range"
energy_per_spike = "fJ-pJ range"
temperature_rise = "< 10 K" # Local heating
```
### Circuit Integration
```python
# Basic neuron circuit
class VO2Neuron:
"""
VO2 Mott oscillator neuron
"""
def __init__(self, threshold_voltage=2.0, capacitance=1e-12):
self.V_th = threshold_voltage
self.C = capacitance
self.membrane_potential = 0.0
self.refractory = False
def integrate(self, input_current, dt):
"""Leaky integration"""
if not self.refractory:
dV = (input_current / self.C) * dt
self.membrane_potential += dV
# Leak term
self.membrane_potential *= 0.99
def fire(self):
"""Check threshold and fire"""
if self.membrane_potential >= self.V_th:
self.membrane_potential = 0.0
self.refractory = True
return True
return False
```
## Applications
### 1. Neuromorphic Processors
- Event-driven computation
- Spike-based neural networks
- Reservoir computing
### 2. Edge AI
- Low-power inference
- Real-time pattern recognition
- Sensor data processing
### 3. Oscillatory Computing
- Coupled oscillator networks
- Optimization solvers
- Associative memory
## Performance Metrics
### Energy Efficiency
- **Per-spike energy**: ~10 fJ (projected)
- **Static power**: Near-zero (non-volatile)
- **Comparison**: 1000x lower than CMOS neurons
### Speed
- **Spike generation**: < 1 ns
- **Refractory period**: 10-100 ns (tunable)
- **Maximum rate**: > 10 MHz
### Scalability
- **Device size**: < 100 nm × 100 nm
- **Integration density**: > 10^9 neurons/cm²
- **3D stacking**: Compatible with vertical integration
## Challenges and Solutions
### Challenges
1. **Temperature Sensitivity**: Requires precise thermal management
2. **Cycle-to-Variability**: Device-to-device variations
3. **Endurance**: Repeated phase cycling degradation
4. **CMOS Integration**: Process compatibility
### Mitigation Strategies
- Active thermal feedback circuits
- Device calibration and tuning
- Alternative phase-change materials
- Hybrid CMOS-VO2 architectures
## Related Skills
- `neuromorphic-continual-nuclear-ics`
- `spiking-neural-network-analysis`
- `energy-efficient-information-representation-in-mni`
- `circuit-level-spiking-neuron-robustness`
## References
- Bersano, F. et al. (2026). Monolithically Integrated VO2 Mott Oscillators for Energy-Efficient Spiking Neurons. arXiv:2604.21487.
## Implementation Status
- [x] Device fabrication
- [x] Oscillator characterization
- [x] Single neuron demonstration
- [ ] Large-scale array integration
- [ ] System-level benchmarking
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!