summaryrefslogtreecommitdiff
path: root/1529/CH21/EX21.10/21_10.sce
blob: 7ddf8131b509f7d302131ce08207cfa674b70e68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Chapter 21, Problem 10
clc;
f=50;                       //frequency
n1=25;                      //primary turns
n2=300;                     //secondary turns
A=300e-4;                   //cross-sectional area of the core
v1=250;                     //primary voltage
phim=v1/(4.44*f*n1);        //flux
Bm=phim/A;                  //maximum flux density
v2=v1*(n2/n1);              //secondary voltage
printf("(a) Maximum flux density= %.2f T\n\n",Bm);
printf("(b) Secondary winding voltage = %d V",v2);