diff options
Diffstat (limited to '3755/CH11/EX11.3')
-rw-r--r-- | 3755/CH11/EX11.3/Ex11_3.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3755/CH11/EX11.3/Ex11_3.sce b/3755/CH11/EX11.3/Ex11_3.sce new file mode 100644 index 000000000..9dbe87702 --- /dev/null +++ b/3755/CH11/EX11.3/Ex11_3.sce @@ -0,0 +1,16 @@ +clear
+//
+//
+//
+
+//Variable declaration
+H=6.5*10^-4; //magnetizing force(amp/m)
+M=1.4; //magnetic field(T)
+
+//Calculation
+chi=M/H;
+mewr=1+chi; //relative permeability
+
+//Result
+printf("\n relative permeability is %0.3f ",mewr)
+printf("\n answer in the book is wrong")
|