From 7bc77cb1ed33745c720952c92b3b2747c5cbf2df Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Sat, 3 Feb 2018 11:01:52 +0530 Subject: Added new code --- 3830/CH6/EX6.5/Ex6_5.sce | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 3830/CH6/EX6.5/Ex6_5.sce (limited to '3830/CH6/EX6.5/Ex6_5.sce') 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 '); -- cgit