blob: f7577849057deac4464a563b2c9942243e58cbb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clear;
clc;
v=10e3/sqrt(3);
R=10;
i=1;
ct=1000/5;
ip=i*ct;
per=R*ip*100/v;
p=10;
res=p/100*v/ip;
mprintf("the percentage of unprotected winding=%fpercent\nResistance for 90percent winding protection=%fohms",100-(per),res);
|