diff options
Diffstat (limited to '1430/CH3/EX3.12')
-rw-r--r-- | 1430/CH3/EX3.12/exa3_12.sce | 14 | ||||
-rw-r--r-- | 1430/CH3/EX3.12/exa3_12.txt | 7 |
2 files changed, 21 insertions, 0 deletions
diff --git a/1430/CH3/EX3.12/exa3_12.sce b/1430/CH3/EX3.12/exa3_12.sce new file mode 100644 index 000000000..34aba89dd --- /dev/null +++ b/1430/CH3/EX3.12/exa3_12.sce @@ -0,0 +1,14 @@ +// Example 3.12
+// Strain Measurement with a Wheatstone Bridge
+// form Figure 3.41
+R_1=1000;
+R_2=100;
+R=625;
+delta_R=0;
+// R_u=(R_2/R_1)*R
+R_u=(100/1000)*625;
+// After strain is applied , the bridge is rebalanced by ajusting th esecond potentiometer to delta_R=2.4
+delta_R_u=(100/1000)*2.4;
+// Strain is defined as s=delta_l/l
+s=delta_R_u/(2*R_u); // Strain meaasured with the help of Wheatstone Bridge
+disp(s,"Strain Measured with the help of wheatstone Bridge=")
diff --git a/1430/CH3/EX3.12/exa3_12.txt b/1430/CH3/EX3.12/exa3_12.txt new file mode 100644 index 000000000..bbd377381 --- /dev/null +++ b/1430/CH3/EX3.12/exa3_12.txt @@ -0,0 +1,7 @@ +
+-->exec('C:\Users\sangeet\Documents\Scilab\Circuits\Chapter 3\exa3.12.sce', -1)
+
+ Strain Measured with the help of wheatstone Bridge=
+
+ 0.00192
+
|