import React from 'react'; import './AnalysisHelp.css'; interface Props { isOpen: boolean; onClose: () => void; } const AnalysisHelp: React.FC = ({ isOpen, onClose }) => { if (!isOpen) return null; return (

🔍 Analysis Guide

🖱️ Smart Selection

Drag an area on the map to batch select streams. Red bubbles are Hot streams (waste heat), Blue bubbles are Cold streams (heat demand).

📂 Scenarios

Save different project versions (e.g., "Night Shift" vs "Day Shift") as Scenarios to compare their energy performance side-by-side.

📉 Composite Curves

The horizontal overlap between the Hot and Cold lines represents the heat we can recover. The remaining gaps show the external energy we still need to pay for.

⛰️ Grand Composite Curve

Identifies the "Pinch Point" (the bottleneck). Pockets in the curve show where heat can be swapped internally without needing a heat pump.

⚡ Heat Pump Integration

The system automatically selects the highest-efficiency heat pump for your temperatures. Higher COP values mean better electricity-to-heat conversion.

📈 Performance Metrics

Heating Savings: The percentage of energy saved compared to your current status quo. Aim for high recovery first!

Tip: Use the "Report" button to generate a full PDF-ready dashboard with all your interactive charts.

); }; export default AnalysisHelp;