diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1271/CH18/EX18.10 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1271/CH18/EX18.10')
-rwxr-xr-x | 1271/CH18/EX18.10/10.txt | 5 | ||||
-rwxr-xr-x | 1271/CH18/EX18.10/example18_10.sce | 13 |
2 files changed, 18 insertions, 0 deletions
diff --git a/1271/CH18/EX18.10/10.txt b/1271/CH18/EX18.10/10.txt new file mode 100755 index 000000000..c61dac6d3 --- /dev/null +++ b/1271/CH18/EX18.10/10.txt @@ -0,0 +1,5 @@ + # PROBLEM 10 #
+Standard formula used
+ B = mu*N*I
+
+ Number of ampere turns is 200 A/m.
diff --git a/1271/CH18/EX18.10/example18_10.sce b/1271/CH18/EX18.10/example18_10.sce new file mode 100755 index 000000000..a1a7ba2f2 --- /dev/null +++ b/1271/CH18/EX18.10/example18_10.sce @@ -0,0 +1,13 @@ +clc +// Given that +l = 1 // length of iron rod in m +a = 4e-4 // area in m^2 +mu = 50e-4 // permeability of iron in H/m +Phi = 4e-4 // magnetic flux in Weber +// Sample Problem 10 on page no. 18.24 +printf("\n # PROBLEM 10 # \n") +printf("Standard formula used \n ") +printf("B = mu*N*I \n") +B = Phi / a +NI = B / mu +printf("\n Number of ampere turns is %d A/m. ",NI) |