inverter sizing
inverter_sizingSize a DC-to-AC inverter for off-grid solar, battery backup, or mobile power systems. Computes the required continuous VA rating from total load watts and power factor, estimates surge capacity for motor-starting loads (3-7x rated power), applies NEC-recommended 20% derating for continuous operation, and selects the nearest standard inverter size. Also calculates DC input current at the system voltage for cable and fuse sizing. Chain from solar_load_audit to get peak_watts and largest_load_watts, then chain to wire_gauge or wire_ampacity to size the DC cables. Essential for off-grid cabins, RV/van builds, emergency backup, and solar+battery installations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| efficiency | No | Inverter efficiency (0.5-1.0). Good pure-sine inverters are 0.90-0.95. Modified-sine are 0.85-0.90. Budget units may be lower. | |
| surge_watts | No | Peak surge/starting load in watts. Motors and compressors draw 3-7x rated watts on startup. If omitted, estimated as 3x the largest single load or 2x continuous, whichever is greater. | |
| derating_pct | No | Derating percentage for temperature, altitude, and safety margin. NEC recommends 20% (80% continuous rating). Range 0-50%. | |
| power_factor | No | Power factor (0.5-1.0). Resistive loads (heaters, lights) are ~1.0. Motor loads (fridge, AC, pump) are 0.6-0.8. Mixed loads typically 0.8. | |
| system_voltage | No | DC system voltage. 12V for small/mobile, 24V for medium, 48V for large residential/commercial. Higher voltage = lower current = thinner cables. | 48 |
| continuous_watts | Yes | Total continuous load in watts. Sum of all appliances that may run simultaneously. Chain from solar_load_audit.peak_watts. | |
| largest_load_watts | No | Wattage of the single largest appliance. Used to estimate surge if surge_watts is not provided. Chain from solar_load_audit.largest_load_watts. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| surge_margin_pct | Yes | How much surge headroom the recommended inverter provides above the estimated surge requirement. | |
| required_surge_va | Yes | Required surge/peak VA capacity for motor starting loads. | |
| battery_cable_note | Yes | Guidance on DC cable sizing based on the continuous current draw. | |
| dc_current_surge_a | Yes | Peak DC input current during surge. Sizes the DC fuse and battery cable. | |
| derated_continuous_va | Yes | Continuous VA after applying derating factor. The inverter must be rated at or above this value. | |
| efficiency_loss_watts | Yes | Power lost to inverter inefficiency at continuous load, in watts. | |
| recommended_size_watts | Yes | Nearest standard inverter size (watts) that meets the derated requirement. | |
| required_continuous_va | Yes | Required continuous VA rating accounting for power factor: continuous_watts / power_factor. | |
| dc_current_continuous_a | Yes | Continuous DC input current draw at system voltage: VA / (voltage * efficiency). Sizes the DC wiring and fuses. |