diff options
Diffstat (limited to '3768/CH8/EX8.7/Ex8_7.sce')
-rw-r--r-- | 3768/CH8/EX8.7/Ex8_7.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3768/CH8/EX8.7/Ex8_7.sce b/3768/CH8/EX8.7/Ex8_7.sce new file mode 100644 index 000000000..ea05d9cb9 --- /dev/null +++ b/3768/CH8/EX8.7/Ex8_7.sce @@ -0,0 +1,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 |