docs/research/arena-physica/arena-physica-analysis.md
Arena Physica positions itself as building "Electromagnetic Superintelligence" -- a foundation model trained directly on electromagnetic fields, one of the four fundamental forces of physics.
Website: https://www.arenaphysica.com/ Key Product: Atlas RF Studio (Beta) Core Models: Heaviside-0 (forward prediction), Marconi-0 (inverse design)
A transformer-based neural network that predicts S-parameters (scattering parameters) from circuit geometry.
Performance claims:
Architecture insights:
A diffusion-based generative model that produces physical RF geometries matching target S-parameter specifications.
Approach:
Simulated data: 3 million designs across 25 expert templates with procedural variations, plus random organic structures to force learning in unexplored design space regions.
Measured data: Fabricated designs tested with vector network analyzers to capture manufacturing tolerances, material variations, connector parasitics.
Total claimed: 20M+ simulated designs in the broader training set.
Arena Physica's central thesis is that Maxwell's equations govern electromagnetic fields, and models trained on field distributions learn the underlying physics rather than surface-level correlations between geometry and S-parameters.
This is directly relevant to WiFi sensing because:
CSI IS an electromagnetic field measurement. WiFi Channel State Information captures the complex transfer function H(f) between transmitter and receiver antennas across frequency subcarriers. This is a discrete sampling of the electromagnetic field in the propagation environment.
Human bodies perturb the electromagnetic field. Pose estimation from WiFi works because the human body (70% water, high permittivity) creates measurable perturbations in the ambient electromagnetic field.
Foundation model approach could apply to sensing. A model trained on electromagnetic field distributions in rooms with human bodies could potentially generalize across environments better than models trained on CSI-to-pose mappings directly.
Arena Physica's current focus is RF component design (filters, antennas), not sensing. However, several concepts transfer directly:
Arena Physica trains on the electromagnetic field itself, not just input-output pairs. We should adopt this principle:
Current approach in wifi-densepose:
CSI amplitude/phase -> CNN/Transformer -> Keypoint coordinates
Physics-informed approach inspired by Arena Physica:
CSI amplitude/phase -> Field reconstruction -> Body perturbation extraction -> Pose estimation
Concretely, this means adding an intermediate field reconstruction stage that produces a spatial electromagnetic field map (similar to our existing tomography.rs module in RuvSense) and then extracting body perturbation from the field rather than going directly from CSI to pose.
Heaviside-0 predicts S-parameters from geometry. An analogous forward model for WiFi sensing would predict CSI from (room geometry + human pose). This enables:
This directly addresses our MERIDIAN cross-environment generalization challenge (ADR-027).
Marconi-0 uses diffusion to solve the inverse problem (S-parameters -> geometry). The analogous inverse problem for WiFi sensing is (CSI -> pose). Recent work on diffusion-based pose estimation could be adapted:
This is more robust than single-shot regression for ambiguous CSI measurements.
Arena Physica operates on 2-layer PCB designs at the mm scale. WiFi sensing operates at the wavelength scale (12.5 cm at 2.4 GHz). However, the principle of multi-resolution field representation applies:
This maps to our existing RuvSense tomography module which implements RF tomography on a voxel grid, but suggests a multi-resolution approach would be more efficient.
Field-augmented training: During training (on GPU workstation), include an auxiliary loss that encourages the model to predict the electromagnetic field distribution, not just keypoints. This regularizes the model and improves OOD generalization. At inference time on Pi Zero, the field prediction head is pruned.
Lightweight forward model: Train a small forward model (CSI predictor given room parameters) on the ESP32 side. This enables on-device anomaly detection: if observed CSI deviates significantly from the forward model prediction, flag the observation as potentially adversarial or corrupted.
Template-based design space: Arena Physica uses 25 expert templates with procedural variations. We should define "room templates" (corridor, open office, bedroom, living room) and train specialized lightweight models per template, selected at deployment time.
Scale of training data: 20M+ designs is infeasible for WiFi sensing. Real CSI data collection is expensive. Synthetic data (ray tracing simulation) partially addresses this but lacks the fidelity of Arena Physica's EM simulations.
Diffusion models on edge: Marconi-0's diffusion approach is too computationally expensive for Pi Zero inference. We need single-shot architectures for real-time operation.
2D geometry inputs: Arena Physica processes 2D PCB layouts. WiFi sensing requires processing time-series data with complex spatial structure. The input representations are fundamentally different.
Arena Physica demonstrates that foundation models trained on electromagnetic field data achieve superior generalization compared to models trained on input-output mappings alone. The key transferable insights for WiFi-DensePose are:
These insights inform the implementation plan, particularly the training pipeline design and the novel "field-augmented" training approach proposed in the implementation plan.