structure
definition
WaterProtocol
show as:
view math explainer →
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
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