watts to amps
watts_to_ampsConverts electrical power in watts to current in amps (and milliamps) for a given voltage, using the DC power formula P = V * I. Also computes the implied load resistance via Ohm's law (R = V / I) assuming a purely resistive load. This is the most common electrical conversion for circuit design, fuse selection, wire sizing, and breaker rating. Use the output amps value to feed into wire_gauge for conductor sizing or voltage_drop for cable loss analysis. Covers DC circuits; for AC with power factor, adjust watts to true power first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| watts | Yes | Power in watts (W) | |
| voltage_v | Yes | Voltage in volts (V) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| amps | Yes | Current in amperes (A) | |
| watts | Yes | Input power echoed back (W) | |
| milliamps | Yes | Current in milliamperes (mA) | |
| voltage_v | Yes | Input voltage echoed back (V) | |
| implied_resistance_ohm | Yes | Implied load resistance in ohms assuming resistive load (V/I) |