summaryrefslogtreecommitdiff
path: root/1757/CH6/EX6.40/EX6_40.sce
diff options
context:
space:
mode:
Diffstat (limited to '1757/CH6/EX6.40/EX6_40.sce')
-rwxr-xr-x1757/CH6/EX6.40/EX6_40.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/1757/CH6/EX6.40/EX6_40.sce b/1757/CH6/EX6.40/EX6_40.sce
new file mode 100755
index 000000000..f1f09c707
--- /dev/null
+++ b/1757/CH6/EX6.40/EX6_40.sce
@@ -0,0 +1,22 @@
+//Example6_40 // Design an instrumentation amplifier
+clc;
+clear;
+close;
+//A = 5 to 500 ; adjustable gain
+VR = 100*10^3 ;
+
+// the maximum differential gain of instrumentation amplifier is 500
+//Amax = (R4/R3)*(1+(2R2/R1));
+//by solving above equation we get following equation
+// 2R2 -249R1f = 0 equation 1
+
+// the minimum differential gain of instrumentation amplifier is 5
+// Amin = (R4/R3)*(1+(2R2/R1)) ;
+//by solving above equation we get following equation
+// 2R2 -1.5R1f = 150*10^3 equation 2
+
+//by solving equation 1 and 2 we get
+disp('The value of resistance R1f is = 0.0606 K ohm ');
+
+disp('The value of resistance R2 is = 75.5 K ohm ');
+