summaryrefslogtreecommitdiff
path: root/2528/CH4/EX4.11
diff options
context:
space:
mode:
Diffstat (limited to '2528/CH4/EX4.11')
-rwxr-xr-x2528/CH4/EX4.11/Ex4_11.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2528/CH4/EX4.11/Ex4_11.sce b/2528/CH4/EX4.11/Ex4_11.sce
new file mode 100755
index 000000000..42f99c3c6
--- /dev/null
+++ b/2528/CH4/EX4.11/Ex4_11.sce
@@ -0,0 +1,15 @@
+clc;
+clear;
+close;
+//pagec no 111
+//Figure 4.17
+Iin=5*10^-6; //In Ampere
+Ri=33*10^3; //In Ohm
+Rf=1*10^3; //In Ohm
+Rload=10*10^3; //In Ohm
+Ai=1+(Ri/Rf); //for inverting current amplifier
+Iout=Ai*Iin;
+disp("A",Iout,"I out ");
+Vmax=Iout*Rload+Iin*Ri;
+disp("V",Vmax,"Vmax is");
+disp("(No problem)")