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.16/16.txt | 5 +++++ 1271/CH18/EX18.16/example18_16.sce | 12 ++++++++++++ 2 files changed, 17 insertions(+) create mode 100755 1271/CH18/EX18.16/16.txt create mode 100755 1271/CH18/EX18.16/example18_16.sce (limited to '1271/CH18/EX18.16') diff --git a/1271/CH18/EX18.16/16.txt b/1271/CH18/EX18.16/16.txt new file mode 100755 index 000000000..377e68aeb --- /dev/null +++ b/1271/CH18/EX18.16/16.txt @@ -0,0 +1,5 @@ + # PROBLEM 16 # +Standard formula used + H=N*i + + Current in solenoid should be 10 A. diff --git a/1271/CH18/EX18.16/example18_16.sce b/1271/CH18/EX18.16/example18_16.sce new file mode 100755 index 000000000..cb246d9ab --- /dev/null +++ b/1271/CH18/EX18.16/example18_16.sce @@ -0,0 +1,12 @@ +clc +// Given that +H = 5e3 // coercivity in A/m +l = 0.10 // length of solenoid in m +n = 50 // no. of turns +// Sample Problem 16 on page no. 18.27 +printf("\n # PROBLEM 16 # \n") +printf("Standard formula used \n ") +printf(" H=N*i \n") +N = n / l +i = H / N +printf("\n Current in solenoid should be %d A.",i) -- cgit