From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 317/CH15/EX15.6/example6.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 317/CH15/EX15.6/example6.sce (limited to '317/CH15/EX15.6/example6.sce') 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 -- cgit