summaryrefslogtreecommitdiff
path: root/196/CH8/EX8.5/example_8_5.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /196/CH8/EX8.5/example_8_5.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '196/CH8/EX8.5/example_8_5.sce')
-rwxr-xr-x196/CH8/EX8.5/example_8_5.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/196/CH8/EX8.5/example_8_5.sce b/196/CH8/EX8.5/example_8_5.sce
new file mode 100755
index 000000000..70d5c6778
--- /dev/null
+++ b/196/CH8/EX8.5/example_8_5.sce
@@ -0,0 +1,11 @@
+//Chapter 8
+//Example 8-5
+//ProbOnInstrumentationAmplifier
+//Page 222,223, Figure 8-6
+clear;clc;
+m = 1001 ;//Gain
+E1 = 5.001 ; E2 = 5.002 ; //example 8-5(a)
+E3 = 5.001 ; E4 = 5.000 ; //example 8-5(b)
+E5 = -1.001 ; E6 = -1.002 ; //example 8-5(c)
+Vout1 = m*(E1-E2); Vout2 = m*(E3-E4); Vout3 = m*(E5-E6);
+printf ( "\n\n Output Voltages are %.4f V , %.4f V, %.4f V ", Vout1,Vout2,Vout3) \ No newline at end of file