summaryrefslogtreecommitdiff
path: root/3802/CH10/EX10.12/Ex10_12.sce
blob: fd13ff34ca02779517934ee2adf85e0a03d2ce9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014

//Ex10_12.sce

clc;
clear;
p=4;
f=50;
R2=0.25;
N1=1425;
N2=1275;

Ns=(120*f)/p;
s1=(Ns-N1)/Ns;
s2=(Ns-N2)/Ns;
R=(R2*(s2/s1))-R2;
printf("\n External resistance per phase=%1.1f ohm per phase",R)