🚀 Auto-deploy: BrainWind atualizado em 14/07/2026 11:50:17

This commit is contained in:
2026-07-14 11:50:17 +00:00
parent 7fcf964254
commit 5899c5c6ad
14 changed files with 4172 additions and 1835 deletions
+2 -3
View File
@@ -17,7 +17,7 @@
import { getWallCpeNBR6123 } from './nbr-tables/table-6';
import { getRoofCpeNBR6123 } from './nbr-tables/table-7';
import { getShedRoofCpeNBR6123 } from './nbr-tables/table-8';
import { getShedRoofCpeNBR6123, type WindAngleT8 } from './nbr-tables/table-8';
import { getValleyRoofCpeNBR6123 } from './nbr-tables/table-9';
import { getMultiSpanSymmetricCpeNBR6123 } from './nbr-tables/table-10';
@@ -78,8 +78,7 @@ export function getRoofCpeOfficial(
return getRoofCpeNBR6123(h, b, theta, windAngle);
}
export function getShedRoofCpe(theta: number, windAngle: 0 | 90 | 180 | 270 = 0) {
// @ts-ignore
export function getShedRoofCpe(theta: number, windAngle: WindAngleT8 = 0) {
return getShedRoofCpeNBR6123(theta, windAngle);
}