import React from 'react'; import asce7_22 from '../../../assets/cnc_zones_asce7_22.png'; import asce7_16 from '../../../assets/cnc_zones_asce7_16.png'; import asce7_10 from '../../../assets/cnc_zones_asce7_10.png'; interface Props { a: number; h: number; leastWidth: number; } export const ComponentsCladdingZones: React.FC = ({ a, h, leastWidth }) => { // Derived values common in diagrams const two_a = a * 2; const four_a = a * 4; const point6_h = h * 0.6; return (
Location of C&C Wind Pressure Zones
{/* Dynamic Project Values Legend */}
Project Dimensions Reference:
h = {h.toFixed(2)} ft
a = {a.toFixed(2)} ft
2a = {two_a.toFixed(2)} ft
4a = {four_a.toFixed(2)} ft
0.6h = {point6_h.toFixed(2)} ft
Least Width = {leastWidth.toFixed(2)} ft
* Values calculated based on current building geometry.
{/* ASCE 7-22 */}
ASCE 7-22
ASCE 7-22 Zones

{/* ASCE 7-16 */}
ASCE 7-16
ASCE 7-16 Zones

{/* ASCE 7-10 & earlier */}
ASCE 7-10 & earlier
ASCE 7-10 Zones
); };