static calcVoltageResistance(current, watts) {
    const calculatedVoltage = watts / current;
    const calculatedResistance = Math.pow(calculatedVoltage, 2) / watts;
    return {
      voltage: calculatedVoltage,