summaryrefslogtreecommitdiff
path: root/2276/CH2/EX2.8/chapter2_ex8.sce
blob: 8998d7fb55500edfb025a142671e4ae58924e580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
clc
clear

//input
a=2500; //area of hysteresis loop in square millimeter
H=16;//magnetising force in ampere/mater per mm when hysteresis loop is plotted on a graph
B=0.02;//flux density in tesla per mm when hysteresis loop is plotted on a graph
hloss=24;//desired hysteresis loss
n=50;//cycles of magnetisation

//calculations
e=B*H;//energy represented by square millimeter
l=a*e;//loss/cubic meter/cycle
Vmax=hloss/(l*n);//maximum volume core in cubic meter

//output
mprintf('the permissible volume of the transformer core is %3.10f cubicmeter',Vmax)