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/CH15/EX15.6 | |
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/CH15/EX15.6')
-rwxr-xr-x | 317/CH15/EX15.6/example6.sce | 19 | ||||
-rwxr-xr-x | 317/CH15/EX15.6/example6.txt | 1 |
2 files changed, 20 insertions, 0 deletions
diff --git a/317/CH15/EX15.6/example6.sce b/317/CH15/EX15.6/example6.sce new file mode 100755 index 000000000..88034723d --- /dev/null +++ b/317/CH15/EX15.6/example6.sce @@ -0,0 +1,19 @@ +// find supply voltage
+// Electronic Principles
+// By Albert Malvino , David Bates
+// Seventh Edition
+// The McGraw-Hill Companies
+// Example 15-6, page 536
+
+clear; clc; close;
+
+// Given dataVz=5.6;// breakdown voltage in volts
+Vgt=0.75;// gate trigger voltage in volts
+Vz=5.6;// breakdown voltage in volts
+
+// Calculations
+Vcc=Vz+Vgt;// overvoltage firing the SCR in volts
+disp("Volts",Vcc,"Supply voltage=")
+
+// Results
+// Supply voltage that turns the crowbar is 6.35 volts
\ No newline at end of file diff --git a/317/CH15/EX15.6/example6.txt b/317/CH15/EX15.6/example6.txt new file mode 100755 index 000000000..7f8630211 --- /dev/null +++ b/317/CH15/EX15.6/example6.txt @@ -0,0 +1 @@ +Supply voltage that turns the crowbar is 6.35 volts
\ No newline at end of file |