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 --- 2609/CH4/EX4.9/ex_4_9.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 2609/CH4/EX4.9/ex_4_9.sce (limited to '2609/CH4/EX4.9') diff --git a/2609/CH4/EX4.9/ex_4_9.sce b/2609/CH4/EX4.9/ex_4_9.sce new file mode 100755 index 000000000..2d1689658 --- /dev/null +++ b/2609/CH4/EX4.9/ex_4_9.sce @@ -0,0 +1,17 @@ +////Ex 4.9 +clc; +clear; +close; +format('v',5); +I2=1;//mA +Rf=4.7;//kohm +//Case 1st +I1=500;//micro A +Vout1=-I1*10^-6*Rf*10^3;//V +disp(Vout1,"For 500 micro A current, Output Voltage(V)"); +//Case 2nd +I2=1;//mA +Vout2=-I2*10^-3*Rf*10^3;//V +disp(Vout2,"For 1 mA current, Output Voltage(V)"); +deltaVout=Vout2-Vout1;//V +disp(deltaVout,"Variation in Output Voltage(V)"); -- cgit