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 /3507/CH9/EX9.23/Ex9_23.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 '3507/CH9/EX9.23/Ex9_23.sce')
-rw-r--r-- | 3507/CH9/EX9.23/Ex9_23.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3507/CH9/EX9.23/Ex9_23.sce b/3507/CH9/EX9.23/Ex9_23.sce new file mode 100644 index 000000000..3bdcdc0e0 --- /dev/null +++ b/3507/CH9/EX9.23/Ex9_23.sce @@ -0,0 +1,21 @@ +//chapter9
+//example9.23
+//page172
+
+Ei=22 // V
+Vz=18 // V
+Rl=18 // ohm
+Eo=Vz
+Iz_min=200d-3 // A
+
+// Zener current will be min when input voltage is min
+
+// load current is
+Il_max=Vz/Rl
+
+// we see that R=(Ei-Eo)/(Iz-Il) and minimum Iz occurs when Il is maximum so
+R=(Ei-Eo)/(Iz_min+Il_max)
+
+printf("required series resistance = %.3f ohm \n",R)
+
+// on inserting this series resistance the output voltage will remain constant at 18 V
|