diff options
Diffstat (limited to '3871/CH12/EX12.3/Ex12_3.sce')
-rw-r--r-- | 3871/CH12/EX12.3/Ex12_3.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3871/CH12/EX12.3/Ex12_3.sce b/3871/CH12/EX12.3/Ex12_3.sce new file mode 100644 index 000000000..f1220a77c --- /dev/null +++ b/3871/CH12/EX12.3/Ex12_3.sce @@ -0,0 +1,23 @@ +//===============================================================================
+//Chapter 12 Example 3
+
+
+clc;clear all;
+
+//variable declaration
+R2 = 100; //resistance of arm in Ω
+R3 = 32.7; //resistance of arm in Ω
+R4 = 100; //resistance of arm in Ω
+R = 1.36; //resistance of arm in Ω
+L = 47.8; //inducatance in mH
+
+
+//calculations
+R1 = ((R2*R3)/(R4))-R; //resistance of coil in Ω
+L1 = (R2/(R4))*L; //in case of balanced position of bridge in mH
+
+//result
+mprintf("Resistance pf the coil = %3.2f Ω",R1);
+mprintf("\ninductance in case of balanced bridge = %3.2f mH",L1);
+
+
|