summaryrefslogtreecommitdiff
path: root/380/CH4/EX4.14/Ex4_14.sce
blob: fbddcd729de1a249b3f1907023b6dae08dfe8537 (plain)
1
2
3
4
5
6
7
8
9
10
11
//Caption:Find the line current,line voltage and power 
//Exa:4.14
clc;
clear;
close;
I_L=4*80/5;
disp(I_L,'Line current (in Amperes)=');
V_L=110*100/1;
disp(V_L,'Line voltage (in Volts)=');
P=(100/1)*(80/5)*352;
disp(P,'Power on the transmission line (in Watts)=');