summaryrefslogtreecommitdiff
path: root/1319/CH12/EX12.5/i_5.sce
blob: 0105e964ae282eb9dadb320e387aff61da6c1a64 (plain)
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 =')