1 2 3 4 5 6 7 8 9 10 11 12
//Current Calculation using ohm's law. clc; clear; V=220; R=80; // Using Ohm's Law V=I*R I=V/R; disp('amperes',I,'The Load Current =')