Skip to main content

Sun spectrum model — contributor reference

The Light & Sun lens reconstructs solar spectral irradiance and convolves it through published action spectra to derive per-channel doses. This page documents the model, the action spectra, and the calibration choices for anyone touching js/sun-spectrum.js or js/sun-uvdata.js.

Pipeline

Wavelength grid

5 nm matches CAMS UV index forecast resolution and is fine enough for the action-spectrum convolutions. Coarser grids would lose the sharp UVB peak; finer grids would oversample without improving accuracy.

Action spectra (per channel)

Each channel has a closed-form action spectrum function returning a 0–1 weighting per nm. Defined in js/sun-spectrum.js: The CCO action spectrum (ccoAt) in the file is an unused helper that sums Karu’s four absorption bands; PBM channels use the simpler narrowband Gaussians for cleaner therapy-device dose math. The citation registry is duplicated in data/sun-action-spectra.json for AI context grounding.

Bird-Riordan reconstruction

Implemented as reconstructSpectrum() with these terms per wavelength:
Where:
  • E0(λ) — extraterrestrial spectral irradiance, hardcoded fit to ASTM E490 reference at sample points 280, 300, 320, 340, 360, 380, 400, 420, 450, 500, 550, 600, 650, 700, 800, 900, 1000, 1200, 1500, 2000, 2500 nm with linear interpolation between
  • T_Rayleighexp(-tauR × airMass / 1000) with tauR = (115.6406 / (nm/1000)^4 - 1.335 / (nm/1000)^2) × altScale and altScale = exp(-altitudeM / 8000)
  • T_O3exp(-ozoneAbsorption(nm) × airMass × ozoneDU/1000) with Bass-Paur cross-section approximation peaking in the Hartley band (~250 nm)
  • T_aerosolexp(-tauA × airMass) with tauA = 0.27 × (nm/500)^-1.14
  • cloudT1 - 0.75 × cloudCover (linear cloud transmission)
  • airMass1 / max(cos(zenithDeg × π/180), 0.001)
Honest accuracy: ±25% relative for our use case (correlation against biomarkers). Not a radiometer. The full Bird-Riordan model has aerosol single-scattering, multiple scattering, and direct/diffuse separation that we deliberately drop for code simplicity. If the lens grows toward research-grade radiometry, re-implement against SMARTS-2.

Channel dose calculation

Per channel:
Where gain is:
  • Skin channels (vitamin_d, pomc, no_cv, nir_solar, pbm_*) → bodyExposureFraction (0–1)
  • Eye channels (circadian, violet_eye) → eyeMultiplier(eyeExposure):
    • direct + clear → 1.0
    • clear-glasses → 0.85 (blocks UV, passes visible)
    • glass-window → 0.4 (passes most visible, blocks NIR + UV)
    • polarized → 0.5
    • photochromic → 0.3
    • blue-blocker → 0.4
    • amber/red → 0.2
    • sunglasses → 0.05
    • closed-eyes, indoor → 0
Eye-channel doses go to zero when eyeExposure is null (no eye exposure logged). Skin channels are unaffected by eye-mode.

Genetic vitamin D context

geneticVitaminDMultiplier(genetics) reads four catalog calls and returns a compound multiplier plus an auditable contributor list: vitaminDIURaw() multiplies the channel result by this compound value before the per-session and daily caps are applied. Missing or reference calls contribute 1.0. These are conservative heuristic weights for associations with circulating 25-OH vitamin D. They are not genotype-specific intervention responses and do not directly measure skin synthesis, transport, hydroxylation, or personal blood response. The UI therefore describes an effective serum response per modeled UV dose, not genetically calculated vitamin D production. VDR rs2228570 and CYP27B1 rs10877012 remain in the public Genome catalog as informational/mechanistic context but are intentionally excluded from the multiplier because their cited studies do not establish a change in circulating 25-OH vitamin D or UV response. Claim scopes and publication links live in data/snp-health.json.

Safety counters

Two safety counters are computed alongside the channel doses:

Erythemal SED

Standard Erythemal Dose, defined as 100 J/m² of CIE-erythemal-weighted irradiance. Converted to a Fitzpatrick-fraction via:
With per-Fitzpatrick MED values from Diffey 1991 / GrassrootsHealth (in SED units): { I: 2, II: 2.5, III: 3, IV: 4.5, V: 6, VI: 10 }. Burn-risk is cumulativeMEDToday() (sum across all sessions today).

Retinal UV

Only counts when eyeExposure.mode === 'direct'. Sums irradiance for λ ≤ 400 nm × duration. Used as a pure safety counter — never recommended to maximize. Sun-gazing protocols are deliberately not supported.

Daily targets

CHANNEL_DISPLAY[k].dailyTarget defines the literature-rough target for “a meaningful healthy daily dose”: These map to the qualitative tier function:
weeklyChannelTier() uses the same ratios but multiplies the daily target by 7 — keeps a 7-day rollup from being scored against a 1-day expectation (a value that scores “moderate” against daily would otherwise score “low” against weekly). Targets are deliberately rough. They’re not normative — they’re a translation layer so the UI doesn’t show channel-au integers. The AI sees raw dose; users see tiers.

Adding a new channel

  1. Add an entry to CHANNEL_DISPLAY in js/sun.js with icon, label, dailyTarget, and what (user-facing tooltip)
  2. Add an action-spectrum function to js/sun-spectrum.js
  3. Append to the CHANNELS array in the same file with { id, key, fn, label }
  4. Add a row to data/sun-action-spectra.json’s channels block with the citation
  5. Add to the dashboard pill order in js/views.js and the page/detail render order in js/light-channel-view.js
  6. Update js/sun-correlations.js if the channel should be biomarker-correlated
  7. Update tests/test-sun-spectrum.js — assert the channel is in SUN_CHANNELS and has non-zero dose at noon

UV data source

js/sun-uvdata.js resolves the active UV data provider via providerOrder(cfg): Legacy cams and noaa modes (from earlier v1.7.x dev iterations) auto-migrate to auto on load via getMeteoConfig() so users with stored configs from a pre-shipping build don’t get stuck. CAMS hosted relay is implemented by the public getbased-uvdata companion service. The browser talks only to the same-origin /api/proxy route; the server-side deployment injects any required upstream credential and returns Open-Meteo-shaped atmosphere data. Self-hosters can run the same relay and point Settings → Light & Sun → Sun data source → Self-hosted at their own URL. We deliberately don’t pull CAMS-McRad surface UV — that product is queue-based with pre-registered locations, structurally incompatible with synchronous per-coord serving. The /spectrum endpoint on the relay runs Bird-Riordan reconstruction server-side fed by real CAMS atmosphere, which collapses the model uncertainty band from ±20–45% to ±10–15% in the UV sweet-spot. Source confidence is computed at read time via computeUVConfidence({source, snapshotAgeSec, cloudCover, zenithDeg, uvIndex, isStale, manualOverridden}) — no longer a static per-source number. Stale grid (>24 h) halves the confidence; heavy cloud (>0.8), low sun (zenith >80°), and below-threshold UVI (<2) each multiplicatively discount further. Manual UV-meter readings lock to 1.0; everything else caps at 0.99.

Validation

tests/test-sun-spectrum.js covers ~120 assertions:
  • Spectrum shape (wavelength array, 5nm grid, 280–2500 nm bounds, non-negative irradiance)
  • Sun-below-horizon → all-zero spectrum
  • Atmospheric attenuation (zenith / ozone / cloud / altitude) — directional checks
  • Channel dose calculation (all channels, body fraction scaling, eye-mode gating, sunglasses → near-zero circadian)
  • Safety counters (SED scales linearly with duration, Fitzpatrick I burns faster than VI, retinal-UV only in direct mode)
  • Edge cases (night spectrum, zero-duration session)
Quarterly validation against published clear-sky measurement campaigns (NREL SRRL, NOAA SURFRAD) is the next-tier rigour. Keep that report in the developer docs when it exists; do not treat it as part of the current verified test suite.