blob: 52272ed5e059e37d4002dc4287aab9c63d5ab06c (
plain)
1
2
3
4
5
6
7
8
9
|
clc();
clear;
// To calculate the relative permeability of ferromagnetic material
H=220; //field in amp/m
M=3300; //magnetisation in amp/m
chi=M/H;
mew_r=1+chi;
printf("relative permeability is %f",mew_r);
|