blob: ea05d9cb99418f0c6d2b05d020c1d9dde7fd5fb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Example number 8.7, Page number 172
clc;clear;
close;
//Variable declaration
H=1800; //magnetizing force(amp/m)
chi=3*10**-5; //magnetic flux(wb)
A=0.2*10**-4; //area(m**2)
//Calculation
B=chi/A;
mew=B/H; //permeability(henry/m)
//Result
printf("permeability is %.3e H/m^2",mew)
//answer in the book is wrong
|