From 3972b3f6b0c77eff716ca6e547a6997a48946d51 Mon Sep 17 00:00:00 2001 From: Akshita-2307 Date: Thu, 4 Jun 2026 13:07:21 +0530 Subject: [PATCH] docs: add explanatory comment for optimalTemp baseline in predictYield MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds a detailed inline comment documenting that 37.5°C is the stable baseline mesophilic temperature for the anaerobic digestion model, optimal for moderate-quality organic waste. Closes #509 --- src/yield-optimizer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yield-optimizer.js b/src/yield-optimizer.js index b0cc257..2afe9f9 100644 --- a/src/yield-optimizer.js +++ b/src/yield-optimizer.js @@ -42,7 +42,7 @@ export const YieldOptimizer = { // Optimize Temperature based on Quality // Hard to digest (low score) -> needs slightly higher temp (thermophilic shift) // Start with a standard mesophilic temperature - let optimalTemp = 37.5; + let optimalTemp = 37.5; // Stable baseline mesophilic temperature (°C) for anaerobic digestion — optimal for moderate-quality organic waste let recommendation = 'Maintain stable mesophilic conditions (37.5°C).'; let healthStatus = 'Optimal';