🚀 Auto-deploy: BrainWind atualizado em 13/07/2026 11:37:13

This commit is contained in:
2026-07-13 11:37:13 +00:00
parent 58ac69ba18
commit 314c9b7490
7 changed files with 1824 additions and 30 deletions
+3 -3
View File
@@ -35,9 +35,9 @@ export function evaluateComfort(input: ComfortInput): ComfortResult {
description: 'Fora da faixa 0,061,00 Hz — aplicar critério da ISO 10137.',
};
}
const ka = use === 'commercial' ? 6.12 : 4.058;
const aLim = Number((0.01 * ka * Math.pow(freq, 1.124)).toFixed(3));
const ratio = Number((aMax / aLim).toFixed(3));
const ka = use === 'commercial' ? 6.12 : 4.06;
const aLim = 0.01 * ka * Math.pow(freq, 1.124);
const ratio = aMax / aLim;
return {
aLim,
use,