From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 2702/CH6/EX6.8/Ex_6_8.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 2702/CH6/EX6.8/Ex_6_8.sce (limited to '2702/CH6/EX6.8/Ex_6_8.sce') diff --git a/2702/CH6/EX6.8/Ex_6_8.sce b/2702/CH6/EX6.8/Ex_6_8.sce new file mode 100644 index 000000000..ce2cc1355 --- /dev/null +++ b/2702/CH6/EX6.8/Ex_6_8.sce @@ -0,0 +1,20 @@ +// Exa 6.8 +clc; +clear; +close; +// Given data +L= 0.8;// in H + +C= .08;// in pF +C= C*10^-12;// in F +C_M= 1.9;// in pF +C_M= C_M*10^-12;// in F +C_T= C*C_M/(C+C_M);// in F +R=5;// in kohm +f_s= 1/(2*%pi*sqrt(L*C));// in Hz +disp(f_s*10^-3,"Series resonant frequency in kHz is : ") +// (ii) +f_p= 1/(2*%pi*sqrt(L*C_T));// in Hz +disp(f_p*10^-3,"parallel resonant frequency in kHz is : ") + +// Note: Calculation to find the value of parallel resonant frequency in the book is wrong, so answer in the book is wrong -- cgit