BAT Activation Wearable Detection Model

Status

⚠️ Exploratory only. No wearable BAT detection method is validated against PET-CT for quantification or coaching decisions. All signals below require human review before operationalization.

Gold standard

PET-CT with ¹⁸F-FDG (fluorodeoxyglucose) is the gold standard for BAT volume and activity quantification. No wearable device currently replicates this.

Wearable signal candidates

Supraclavicular skin temperature gradient

AttributeDetail
SignalDelta between supraclavicular skin temperature and core body temperature
RationaleBAT in supraclavicular region generates heat; local temperature rise expected during activation
Validation statusNot validated against PET-CT for BAT quantification
ConfoundersAmbient temperature, clothing, body fat, hydration
Coaching useDo not use for coaching decisions without validation study

Evidence grade: Gap — exploratory signal with no validation pathway established in Vitals context.


Heart rate variability during cold exposure

AttributeDetail
SignalHRV suppression (↓SDNN, ↓RMSSD) during acute cold exposure
RationaleCold activates SNS; BAT activation is SNS-mediated; HRV reflects sympathetic tone
Validation statusModerate plausibility; single-study validation (athletes) — insufficient for coaching use
ConfoundersAnxiety response to cold, respiration rate, caffeine, baseline fitness
Coaching useExploratory only; requires human review

Evidence grade: Reported (mechanistic plausibility); Gap (validation for BAT quantification).


Post-cold HRV recovery

AttributeDetail
SignalHRV recovery trajectory 24h after cold exposure
RationaleSympathetic surge during cold; recovery pattern may reflect BAT-mediated metabolic activation
Validation statusSingle study in athletes; not validated for BAT quantification
ConfoundersSleep quality post-cold, baseline HRV, training load, stress
Coaching useExploratory only

Evidence grade: Reported (single study); Gap (generalizability and BAT-specificity).


Resting metabolic rate delta

AttributeDetail
SignalChange in RMR before vs. after cold exposure protocol
RationaleBAT activation adds to RMR; meta-analysis supports +188 kcal/day cold-induced EE increase
Validation statusIndirectly validated (EE increase measured via indirect calorimetry in RCTs)
ConfoundersIndividual EE variation, acclimation, meal timing, BAT-negative individuals
Coaching usePopulation-level estimate only; individual RMR measurement required for delta interpretation

Note: The +188 kcal/day is an aggregate population estimate. Individual response is highly variable; BAT-negative individuals may show minimal response.


Body weight trajectory

AttributeDetail
SignalBody weight change following cold exposure BAT activation protocols
Validation statusNOT RECOMMENDED — body weight does not change despite EE increase due to compensatory mechanisms
ConfoundersAppetite compensation, activity reduction, fluid shifts
Coaching useDo not use as BAT activation outcome

Signal integration approach

def bat_activation_wearable_assessment(wearable_data: dict, client_context: dict) -> dict:
    """
    BAT activation wearable signal assessment.
    ALL signals are exploratory — requires human review before coaching decisions.
    """
    signals = []
    caveats = []
 
    # Supraclavicular temperature gradient
    sct_gradient = wearable_data.get("supraclavicular_temp_delta_vs_core", None)
    if sct_gradient is not None:
        signals.append({
            "signal": "supraclavicular_temperature_gradient",
            "value": sct_gradient,
            "interpretation": "exploratory_only",
            "validation_status": "not_validated_vs_pet_ct",
            "caveat": "Do not use for coaching decisions without validation study"
        })
        caveats.append("Supraclavicular temperature gradient: not validated for BAT quantification")
 
    # Post-cold HRV recovery
    hr_recovery = wearable_data.get("post_cold_hrv_recovery_24h", None)
    if hr_recovery is not None:
        signals.append({
            "signal": "post_cold_hrv_recovery",
            "value": hr_recovery,
            "interpretation": "exploratory_sympathetic_assessment",
            "validation_status": "single_study_athletes",
            "caveat": "Do not operationalize without human signoff"
        })
        caveats.append("Post-cold HRV recovery: single study, limited generalizability")
 
    # RMR delta (requires pre/post measurement)
    rmr_baseline = wearable_data.get("rmr_kcal_day_baseline", None)
    if rmr_baseline is not None:
        signals.append({
            "signal": "resting_metabolic_rate",
            "value": rmr_baseline,
            "interpretation": "baseline_for_cold_exposure_delta",
            "expected_bat_delta": "+188_kcal_day_estimate",
            "caveat": "Individual variation wide; compensatory mechanisms mean weight loss unlikely"
        })
 
    # Body weight trajectory — explicitly exclude
    bw_trajectory = wearable_data.get("body_weight_trajectory", None)
    if bw_trajectory is not None:
        signals.append({
            "signal": "body_weight",
            "value": bw_trajectory,
            "interpretation": "NOT_RECOMMENDED",
            "caveat": "Body weight does NOT change despite EE increase; do not use as BAT activation proxy"
        })
        caveats.append("Body weight: do NOT use as BAT activation outcome — weight does not change")
 
    return {
        "bat_signals": signals,
        "operationalization_status": "exploratory",
        "requires_human_signoff": True,
        "caveats": caveats,
        "gold_standard_note": "PET-CT FDG is the only validated BAT quantification method",
        "evidence_grade": "Gap (wearable BAT quantification)"
    }

Safety screening requirement

Before any cold-exposure BAT activation protocol:

FlagSeverityAction
Uncontrolled hypertensionHighContraindication — cold immersion not recommended
CADHighCold immersion contraindicated
Arrhythmia historyHighCold exposure not recommended
Recent MIHighCold exposure not recommended
Heart failureHighCold exposure not recommended

Evidence boundaries (mandatory)

Do NOT use wearable signals to:

  • Quantify BAT volume or activity
  • Make coaching decisions about BAT activation efficacy
  • Replace PET-CT for BAT assessment
  • Claim cold exposure produces weight loss

Await before validating any BAT wearable signal:

  • Results from NCT04666636, NCT05051436, NCT05419726, NCT06893211
  • Peer-reviewed validation studies correlating wearable signals with PET-CT BAT quantification