This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// We call the `setIsoValue` function passing the element `e` we want to write to, the vrms `v` and the Motor Size `ms` | |
// as the class: | |
// Class I: upto 15kW | |
// Class II: 15kW to 75kW | |
// Class III: Over 75kW Rigid support | |
// Class IV: Over 75kW Flexible supoort | |
setIsoValue("isoValue", vrms, currentMotorSize); | |
function setIsoValue(e, v, ms){ | |
if (v != undefined) { |