diff options
Diffstat (limited to '3768/CH8/EX8.10/Ex8_10.sce')
-rw-r--r-- | 3768/CH8/EX8.10/Ex8_10.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3768/CH8/EX8.10/Ex8_10.sce b/3768/CH8/EX8.10/Ex8_10.sce new file mode 100644 index 000000000..29cde7622 --- /dev/null +++ b/3768/CH8/EX8.10/Ex8_10.sce @@ -0,0 +1,15 @@ +//Example number 8.10, Page number 173 + +clc;clear; +close; + +//Variable declaration +h=200; //hysteresis loss per cycle(J/m**3) +M=7650; //atomic weight(kg/m**3) +n=100; //magnetisation cycles per second +//Calculation +hpl=h*n; //hysteresis power loss per second(watt/m**3) +pl=hpl/M; //power loss(watt/kg) +//Result +printf("hysteresis power loss per second is %.f W/m^3",hpl) +printf("\n power loss is %.3f W/kg",pl) |