diff options
Diffstat (limited to '1316/CH2/EX2.9')
-rw-r--r-- | 1316/CH2/EX2.9/example2_9.sce | 24 | ||||
-rw-r--r-- | 1316/CH2/EX2.9/resultexample2_9.txt | 7 |
2 files changed, 31 insertions, 0 deletions
diff --git a/1316/CH2/EX2.9/example2_9.sce b/1316/CH2/EX2.9/example2_9.sce new file mode 100644 index 000000000..b540a958a --- /dev/null +++ b/1316/CH2/EX2.9/example2_9.sce @@ -0,0 +1,24 @@ +//Chapter 2
+//Example 2.9
+//Page 67
+
+clear;
+clc;
+
+R1 = 5000;
+R2 = 5000;
+R3 = 1000;
+R4 = 990;
+R5 = 10;
+Vx =10;
+Pot = 0.012;
+
+//Finding Current necessary to null the bridge
+printf("First an examination of the resistancs show \n that the bridge is nulled when I = 0 and Vx = 0\n from the equation (Vx)+((R3*V)/(R1+R3))-(V*(R4+R5)/(R2+R4+R5))-(I*R5)=0")
+x=(R3*Vx)/(R1+R3);
+printf("(R3*V)/(R1+R3))=%.3f V\n",x)
+y=(Vx*(R4+R5)/(R2+R4+R5))
+printf("(V*(R4+R5)/(R2+R4+R5))=%.3f V",y)
+z = Pot/R5*1000;
+printf("\n Thus,we can use equation Vx-IR5=0: \n 12mV-10I=0 \n Thus I = %0.1f mA",z)
+
diff --git a/1316/CH2/EX2.9/resultexample2_9.txt b/1316/CH2/EX2.9/resultexample2_9.txt new file mode 100644 index 000000000..99fb723ab --- /dev/null +++ b/1316/CH2/EX2.9/resultexample2_9.txt @@ -0,0 +1,7 @@ + First an examination of the resistancs show
+ that the bridge is nulled when I = 0 and Vx = 0
+ from the equation (Vx)+((R3*V)/(R1+R3))-(V*(R4+R5)/(R2+R4+R5))-(I*R5)=0(R3*V)/(R1+R3))=1.667 V
+(V*(R4+R5)/(R2+R4+R5))=1.667 V
+ Thus,we can use equation Vx-IR5=0:
+ 12mV-10I=0
+ Thus I = 1.2 mA
\ No newline at end of file |