diff options
Diffstat (limited to '1271/CH18/EX18.16')
-rwxr-xr-x | 1271/CH18/EX18.16/16.txt | 5 | ||||
-rwxr-xr-x | 1271/CH18/EX18.16/example18_16.sce | 12 |
2 files changed, 17 insertions, 0 deletions
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) |