summaryrefslogtreecommitdiff
path: root/281/CH9/EX9.5/example9_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '281/CH9/EX9.5/example9_5.sce')
-rwxr-xr-x281/CH9/EX9.5/example9_5.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/281/CH9/EX9.5/example9_5.sce b/281/CH9/EX9.5/example9_5.sce
new file mode 100755
index 000000000..0ccbe6f4a
--- /dev/null
+++ b/281/CH9/EX9.5/example9_5.sce
@@ -0,0 +1,21 @@
+disp('chapter 9 ex9.5')
+disp('given')
+disp('for circuit designed in ex 9.4 calculate the actual UTP and LTP using standard resistance values')
+disp('using 741 op-amp with a supply of +or-15volt,Vf=0.7volt,R1=5.6kohm,R2=22kohm+2.7kohm and R3=15kohm')
+Vcc=15
+Vf=0.7
+R1=5600
+R2=24700
+R3=15000
+disp('I2=(|Vo|-Vf)/R2')
+I2=((Vcc-1)-Vf)/R2
+disp('amperes',I2)
+disp('UTP=I2*R1')
+UTP=I2*R1
+disp('volts',UTP)
+disp('I3=(|Vo|-Vf)/R3')
+I3=((Vcc-1)-Vf)/R3
+disp('amperes',I3)
+disp('LTP=-I3*R1')
+LTP=-I3*R1
+disp('volts',LTP) \ No newline at end of file