summaryrefslogtreecommitdiff
path: root/1271/CH18/EX18.16
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1271/CH18/EX18.16
downloadScilab-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.16')
-rwxr-xr-x1271/CH18/EX18.16/16.txt5
-rwxr-xr-x1271/CH18/EX18.16/example18_16.sce12
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)