Monolithically integrated VO2 Mott phase-transition oscillators for compact, energy-efficient hardware implementation of spiking neurons. Compatible with large-scale CMOS integration for brain-inspired non-Boolean computing.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill vo2-mott-oscillator-spiking-neurons-v2 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Vo2 Mott Oscillator Spiking Neurons V2?
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-v2-a8228b69)More formats (shields.io, HTML) on the badges page.
---
name: vo2-mott-oscillator-spiking-neurons-v2
description: "Monolithically integrated VO2 Mott phase-transition oscillators for compact, energy-efficient hardware implementation of spiking neurons. Compatible with large-scale CMOS integration for brain-inspired non-Boolean computing."
---
# VO2 Mott Oscillators for Energy-Efficient Spiking Neurons
> Monolithic integration of Mott insulator-to-metal transition oscillators with CMOS for compact, energy-efficient neuromorphic computing.
## Metadata
- **Source**: arXiv:2604.21487v1
- **Title**: Monolithically Integrated VO$_2$ Mott Oscillators for Energy-Efficient Spiking Neurons
- **Authors**: Fabio Bersano, Cyrille Masserey, Vanessa Conti, et al.
- **Published**: 2026-04-23
- **Category**: Neuromorphic Hardware/Nanodevices
## Core Methodology
### Problem Context
Brain-inspired non-Boolean computing offers intrinsic error tolerance and parallelism, but practical deployment is limited by lack of compact, energy-efficient spiking hardware compatible with large-scale integration.
### Mott Oscillator Solution
**VO2 Phase-Transition Devices**:
1. **Abrupt transition**: Insulator-to-metal transition enables neuron-like spiking
2. **Intrinsic dynamics**: Self-sustained oscillations without complex circuits
3. **CMOS compatible**: Monolithic integration with standard processes
4. **Energy efficient**: Low power consumption during switching
### Key Innovation
- **Monolithic integration**: VO2 devices fabricated alongside CMOS circuitry
- **Compact design**: Single device implements spiking neuron functionality
- **Scalability**: Compatible with large-scale neuromorphic chips
- **Neuromorphic computing**: Direct implementation of integrate-and-fire dynamics
## Technical Framework
### Device Physics
```
VO2 Material Properties:
- Phase transition: Insulator → Metal at ~68°C
- Hysteresis: Bistable switching behavior
- Time constant: Nanosecond-scale dynamics
- Energy per spike: Femtojoule range
```
### Neuron Implementation
- **Integrate**: Capacitive charging of VO2 device
- **Fire**: Threshold-triggered phase transition
- **Reset**: Automatic recovery via thermal dissipation
- **Leak**: Natural discharge characteristics
## Implementation Guide
### Prerequisites
- Semiconductor fabrication facility (or foundry access)
- VO2 thin-film deposition capability
- CMOS process integration
- Characterization equipment
### Device Fabrication
1. **Substrate preparation**: Silicon wafer with CMOS circuitry
2. **VO2 deposition**: Pulsed laser deposition or sputtering
3. **Patterning**: Photolithography for device definition
4. **Contact formation**: Metal electrodes for integration
5. **Characterization**: Electrical testing and optimization
### Circuit Integration
```python
# Conceptual integration example
class MottNeuron:
def __init__(self, v_threshold=2.0, tau_recovery=1e-9):
self.v_threshold = v_threshold # Phase transition threshold
self.tau_recovery = tau_recovery # Thermal time constant
self.membrane_potential = 0.0
def integrate(self, input_current, dt):
# Capacitive integration
self.membrane_potential += input_current * dt / C_mem
# Mott transition check
if self.membrane_potential >= self.v_threshold:
self.fire()
return 1 # Spike
return 0 # No spike
def fire(self):
# Phase transition: insulator → metal
self.membrane_potential = 0.0 # Reset via discharge
# Thermal recovery happens automatically
```
## Applications
- Neuromorphic computing chips
- Edge AI hardware
- Brain-machine interfaces
- Low-power neural processing
- Real-time pattern recognition
## Performance Characteristics
- **Switching energy**: ~1-10 fJ per spike
- **Switching speed**: Sub-nanosecond
- **Integration density**: High (nanoscale devices)
- **Scalability**: CMOS-compatible process
## Related Skills
- vo2-conduction-topology-phase-dynamics
- circuit-level-spiking-neuron-robustness
- neuromorphic-oscillator-reservoir-computing
## References
- arXiv:2604.21487v1
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!