summaryrefslogtreecommitdiff
path: root/3830/CH6/EX6.5/Ex6_5.sce
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3830/CH6/EX6.5/Ex6_5.sce
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.gz
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.bz2
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.zip
Added new codeHEADmaster
Diffstat (limited to '3830/CH6/EX6.5/Ex6_5.sce')
-rw-r--r--3830/CH6/EX6.5/Ex6_5.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/3830/CH6/EX6.5/Ex6_5.sce b/3830/CH6/EX6.5/Ex6_5.sce
new file mode 100644
index 000000000..592acea07
--- /dev/null
+++ b/3830/CH6/EX6.5/Ex6_5.sce
@@ -0,0 +1,26 @@
+// Exa 6.5
+
+clc;
+clear;
+
+// Given
+
+// Referring Fig. 6.43
+
+
+// Solution
+
+printf('This is also a bridged-T network. This circuit is used to compare different coils, Lp and Rp. Using the general equation for a bridged-T netwrok at balance,\n ');
+
+printf('Z1+Z3+ Z1*Z3/Z2+Z4= 0 \n ');
+printf('Z1 = 1/jwC \n ');
+printf('Z3 = 1/jwC \n ');
+printf('Z2 = Rp+ 1/jwLp \n ');
+printf('Z4 = R \n ');
+
+printf('substituting these values in the equation, equating real and imagnary parts, and simplifying \n ');
+
+printf('1/jwC + 1/jwC - 1/(w^2*C^2*R)+Rs+jwLs = 0 \n ');
+printf('Therefore \n ');
+printf('w*Lp = 1/(2*w*C) \n ');
+printf('Rp = 1/(R*(w*C)^2) \n ');