summaryrefslogtreecommitdiff
path: root/317/CH5/EX5.7
diff options
context:
space:
mode:
Diffstat (limited to '317/CH5/EX5.7')
-rwxr-xr-x317/CH5/EX5.7/example7.sce21
-rwxr-xr-x317/CH5/EX5.7/example7.txt1
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