diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3745/CH1/EX1.45/Ex1_45.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3745/CH1/EX1.45/Ex1_45.sce')
-rw-r--r-- | 3745/CH1/EX1.45/Ex1_45.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/3745/CH1/EX1.45/Ex1_45.sce b/3745/CH1/EX1.45/Ex1_45.sce new file mode 100644 index 000000000..8e1096273 --- /dev/null +++ b/3745/CH1/EX1.45/Ex1_45.sce @@ -0,0 +1,28 @@ +// Ex 45 Page 389 + +clc;clear;close; +// Given +Edc=500;//V +fim=.085;//Wb +f=50;//Hz +E1=11000;//V +P=1500;//kW +p=8;//pole +pf=0.9 +V=500;//V +J=3;//A/mm^2 + +E2=Edc/sqrt(2)//V +N2=E2/4.44/f/fim;//no. of turns +N1=E1/E2*N2;//no. of turns +printf("no. of turns in primary = %d",N1) +printf("\n no. of turns in secondary = %d",N2) +Idc=P*10**3/V;//A +eta=1;//because of no loss +ISR=0.472*Idc/(eta*pf) +A1=ISR/J*10**-6;//m^2 (cross section area) +I1=N2/N1*ISR;//A +A2=I1/J*10**-6;//m**2 (cross section area of primary winding) +printf("\n\n cross section of primary winding=%.2e m^2",A1) +printf("\n cross section of secondary winding=%.1e m^2",A2) +//ans in the book are not accurate. |