From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1271/CH18/EX18.10/10.txt | 5 +++++ 1271/CH18/EX18.10/example18_10.sce | 13 +++++++++++++ 2 files changed, 18 insertions(+) create mode 100755 1271/CH18/EX18.10/10.txt create mode 100755 1271/CH18/EX18.10/example18_10.sce (limited to '1271/CH18/EX18.10') 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) -- cgit