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 /317/CH5/EX5.7 | |
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 '317/CH5/EX5.7')
-rwxr-xr-x | 317/CH5/EX5.7/example7.sce | 21 | ||||
-rwxr-xr-x | 317/CH5/EX5.7/example7.txt | 1 |
2 files changed, 22 insertions, 0 deletions
diff --git a/317/CH5/EX5.7/example7.sce b/317/CH5/EX5.7/example7.sce new file mode 100755 index 000000000..a3cbe91d6 --- /dev/null +++ b/317/CH5/EX5.7/example7.sce @@ -0,0 +1,21 @@ +// using second approximation find load voltage +// Electronic Principles +// By Albert Malvino , David Bates +// Seventh Edition +// The McGraw-Hill Companies +// Example 5-7, page 153 + +clear;clc; close; + +// Given data +Iz=20*10^-3;// zener current in amperes +Rz=8.5;// zener resistance in ohms +Vz=10;// breakdown voltage in volts + +// Calculations +dVl=Iz*Rz;// change in load voltage in volts +Vl=Vz+dVl;// load voltage in volts +disp("Volts",Vl,"load voltage=") + +// Result +// load voltage is 10.17 volts diff --git a/317/CH5/EX5.7/example7.txt b/317/CH5/EX5.7/example7.txt new file mode 100755 index 000000000..1c3cbe0d2 --- /dev/null +++ b/317/CH5/EX5.7/example7.txt @@ -0,0 +1 @@ +load voltage is 10.17 volts |