pith. machine review for the scientific record. sign in
structure

WaterProtocol

definition
show as:
view math explainer →
module
IndisputableMonolith.Experiments.Protocols
domain
Experiments
line
170 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Experiments.Protocols on GitHub at line 170.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

formal source

 167/-! ## Water Structure Predictions -/
 168
 169/-- Water coherence domain measurement protocol -/
 170structure WaterProtocol where
 171  /-- Measurement technique -/
 172  technique : String := "ultrafast_IR_spectroscopy"
 173  /-- Time resolution (femtoseconds) -/
 174  time_resolution : ℝ := 100
 175  /-- Conditions to compare -/
 176  conditions : List String := ["control", "near_meditator", "intention_target"]
 177
 178/-- Water structure predictions -/
 179structure WaterPrediction where
 180  /-- Expected τ_gate in picoseconds -/
 181  tau_gate_ps : ℝ := 65
 182  /-- Expected change near intention (%) -/
 183  tau_change_percent : ℝ := 5
 184  /-- Expected coherence domain size (nm) -/
 185  domain_size_nm : ℝ := 10
 186  /-- Expected size change (%) -/
 187  size_change_percent : ℝ := 10
 188
 189/-- Data from water structure measurement -/
 190structure WaterMeasurement where
 191  condition : String
 192  tau_gate : ℝ
 193  domain_size : ℝ
 194
 195/-- The water prediction is falsified if τ_gate is far from 65 ps OR no change near intention -/
 196def isWaterFalsified (baseline : WaterMeasurement) (intention : WaterMeasurement) : Prop :=
 197  -- Falsified if: τ_gate outside (60, 70) ps OR no change
 198  |baseline.tau_gate - 65| > 10 ∨
 199  |intention.tau_gate - baseline.tau_gate| < 1  -- Less than 1 ps change
 200