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 /608/CH7/EX7.03/7_03.sce | |
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 '608/CH7/EX7.03/7_03.sce')
-rwxr-xr-x | 608/CH7/EX7.03/7_03.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/608/CH7/EX7.03/7_03.sce b/608/CH7/EX7.03/7_03.sce new file mode 100755 index 000000000..1b9eae165 --- /dev/null +++ b/608/CH7/EX7.03/7_03.sce @@ -0,0 +1,14 @@ +//Problem 7.03: A magnetizing force of 8000 A/m is applied to a circular magnetic circuit of mean diameter 30 cm by passing a current through a coil wound on the circuit. If the coil is uniformly wound around the circuit and has 750 turns, find the current in the coil.
+
+//initializing the variables:
+H = 8000; // in A/m
+d = 0.30; // in m
+N = 750; // no. of turns
+Pi = 3.14;
+
+//calculation:
+l = Pi*d
+I = H*l/N
+
+printf("\n\nResult\n\n")
+printf("\n current I = %.2f Ampere(A)\n",I)
\ No newline at end of file |