From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 752/CH1/EX1.5.1/1_5_1.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 752/CH1/EX1.5.1/1_5_1.sce (limited to '752/CH1/EX1.5.1') diff --git a/752/CH1/EX1.5.1/1_5_1.sce b/752/CH1/EX1.5.1/1_5_1.sce new file mode 100755 index 000000000..ea644d99b --- /dev/null +++ b/752/CH1/EX1.5.1/1_5_1.sce @@ -0,0 +1,18 @@ +clc; +// page no 21 +// prob no 1_5_1 +//Series tuned resonant ckt is given which is tuned at 25 MHz with +//series resistance 5 ohm self capacitance 7 pF and inductance 1 uH +C=7*10^-12;R=5;L=10^-6;f=25*10^6; +//Determination of self resonant freq of coil denoted as Fsr +Fsr=1/(2*3.14*(L*C)^0.5); +disp('MHz',Fsr/(10^6),+'The value of self resonant freq is'); +//Determination of Q-factor of coil,excluding self-capacitive effects +Q=(2*3.14*f*L)/R; +disp(Q,'The value of Q-factor is'); +//Determination of effective inductance +Leff=L/(1-(f/Fsr)^2); +disp('uH',Leff*(10^6),+'The value of effective inductance is'); +//Determination of effective Q-factor +Qeff=Q*(1-(f/Fsr)^2); +disp(Qeff,'The value of effective Q-factor is'); \ No newline at end of file -- cgit