Each hyphal tip accumulates coherence C from local environmental signal. Rupture (branching) occurs when C ≥ C* = 1/Ω. After rupture, the tip regenerates with coherence reset to zero. A 700×700 spatial coherence field C(x,t) tracks the integrated history of mycelial activity across the substrate, with local growth rate modulated by exp(C/Ω).
L[i] = growthActivity[i]×0.1 + branchActivity[i]×0.2 + density[i]×0.05coherence[i] += L[i] × dt every framecoherence[i] *= 0.9998 (slow dissipation)tip.C += L_local × dtif (tip.C ≥ C_STAR) → branch where C_STAR = 1/Ω = πtip.C = 0 after ruptureB = exp(C/Ω) × (C* − C) drives tip glow intensitysignal = nutrients[i]×2 + moisture[i]×0.5 − density[i]×0.3speed = baseSpeed × exp(coherence[i] / Ω) × (1−stress)²d = 0.8 × parent.d × (1 + 0.1 × (local_nutrient − 0.5))signal = current×0.7 + memoryWeighted×0.3