summaryrefslogtreecommitdiff
path: root/2240/CH20/EX19.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2240/CH20/EX19.3
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 '2240/CH20/EX19.3')
-rwxr-xr-x2240/CH20/EX19.3/EX19_3.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/2240/CH20/EX19.3/EX19_3.sce b/2240/CH20/EX19.3/EX19_3.sce
new file mode 100755
index 000000000..393daa62f
--- /dev/null
+++ b/2240/CH20/EX19.3/EX19_3.sce
@@ -0,0 +1,13 @@
+// Grob's Basic Electronics 11e
+// Chapter No. 19
+// Example No. 19_3
+clc; clear;
+// How much is the inductance of a coil that induces 40 V when its current changes at the rate of 4 A/s?
+
+// Given data
+
+Vl = 40; // Induced voltage=40 Volts
+R = 4 // Current changing rate=di/dt=4 A/s
+
+L = Vl/R;
+disp (L,'The Value of Inductance in Henry')