diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1316/CH2/EX2.9/example2_9.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1316/CH2/EX2.9/example2_9.sce')
-rw-r--r-- | 1316/CH2/EX2.9/example2_9.sce | 24 |
1 files changed, 24 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)
+
|