Wire sections: AWG, kcmil, mm² - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Software Libraries (/forum-10.html) +--- Forum: HP Prime Software Library (/forum-15.html) +--- Thread: Wire sections: AWG, kcmil, mm² (/thread-11364.html) |
Wire sections: AWG, kcmil, mm² - JMB - 09-08-2018 05:24 PM Here are four functions to convert wire sections between kcmil and mm², and between AWG and mm² PHP Code: EXPORT kcmil_to_mm2(kcmil) Example 1: kcmil_to_mm2(300) returns 152.0122 Example 2: mm2_to_kcmil(150) returns 296.0288 Example 3: AWG_to_mm2(14) returns 2.0810 Example 4: mm2_to_AWG(4) returns 11 |