summaryrefslogtreecommitdiff
path: root/1133/CH9/EX9.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1133/CH9/EX9.9
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1133/CH9/EX9.9')
-rwxr-xr-x1133/CH9/EX9.9/Example9_9.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/1133/CH9/EX9.9/Example9_9.sce b/1133/CH9/EX9.9/Example9_9.sce
new file mode 100755
index 000000000..48e230107
--- /dev/null
+++ b/1133/CH9/EX9.9/Example9_9.sce
@@ -0,0 +1,17 @@
+//Example 9.9
+clc
+disp("Given +V_sat = 12 V, -V_sat = -12 V, V_H = 6 V")
+disp("We know that hysteresis width is given as")
+disp(" V_H = (R2/R1+R2)[+V_sat-V_sat]")
+disp("Therefore, R2 / R1+R2 = V_H / +V_sat-V_sat")
+r=6/(24)
+disp(r,"Therefore, R2 / R1+R2 =")
+disp("Therefore, R2 = 0.25R1 + 0.25R2")
+disp("Therefore, 0.75R2 = 0.25R1")
+r2=0.25/0.75
+format(7)
+disp(r2,"Therefore, R2 / R1 =")
+disp("Assuming R2 = 10 k-ohm")
+r1=(10000/0.3333)*10^-3
+format(3)
+disp(r1," R1(in k-ohm) =")