diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /199/CH6/EX6.8 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '199/CH6/EX6.8')
-rwxr-xr-x | 199/CH6/EX6.8/Example_6_8.sce | 12 | ||||
-rwxr-xr-x | 199/CH6/EX6.8/result_ex_6_8.txt | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/199/CH6/EX6.8/Example_6_8.sce b/199/CH6/EX6.8/Example_6_8.sce new file mode 100755 index 000000000..6a435025c --- /dev/null +++ b/199/CH6/EX6.8/Example_6_8.sce @@ -0,0 +1,12 @@ +// Chapter6
+// Page.No-209, Figure.No-6.12
+// Example_6_7
+// Change in resistance in straingage
+// Given
+clear;clc;
+A=-100; // Gain of the differential instrumentation amplifier
+Ra=100;Rb=100;Rc=100;
+Vdc=10;Vo=1;
+R=Ra; // Ra=Rb=Rc=R
+delta_R=(Vo*R)/(Vdc*abs(A)); // Change in resistance
+printf("\n Change in resistance is = %.1f ohm \n",delta_R)
\ No newline at end of file diff --git a/199/CH6/EX6.8/result_ex_6_8.txt b/199/CH6/EX6.8/result_ex_6_8.txt new file mode 100755 index 000000000..5ecb627b6 --- /dev/null +++ b/199/CH6/EX6.8/result_ex_6_8.txt @@ -0,0 +1 @@ +* Change in resistance is = 0.1 V
\ No newline at end of file |