blob: 35da213ba7c28a9c5ef81e151974bdc2cae0a0eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Determining Hysteresis loss
clc;
clear;
fluxmax=1.5;
x=15/(10^-2);
y=1;
f=50;
a=x*y;// loss for one centimetre square.
area=0.6;// in centimetre square.
hy_ls= area*a;
vol=1500*(10^-6);
hyls_cycle= vol*hy_ls;
hyls_sec= hyls_cycle*f;
disp('watts',hyls_sec,'The Hysteresis loss =')
|