diff options
Diffstat (limited to '2609/CH4/EX4.9')
-rwxr-xr-x | 2609/CH4/EX4.9/ex_4_9.sce | 17 |
1 files changed, 17 insertions, 0 deletions
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)");
|