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 --- 2444/CH7/EX7.5/ex7_5.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 2444/CH7/EX7.5/ex7_5.sce (limited to '2444/CH7/EX7.5/ex7_5.sce') diff --git a/2444/CH7/EX7.5/ex7_5.sce b/2444/CH7/EX7.5/ex7_5.sce new file mode 100755 index 000000000..79b871227 --- /dev/null +++ b/2444/CH7/EX7.5/ex7_5.sce @@ -0,0 +1,20 @@ +// Exa 7.5 +clc; +clear; +close; +format('v',6) +// Given data +f_o = 950;// in kHz +f_o = f_o *10^3;// in Hz +C1 = 100;// in pF +C1 = C1 * 10^-12;// in F +C2 = 7500;// in pF +C2 = C2 * 10^-12;// in F +//Formula f_o = (1/(2*Pi))*(sqrt( (1/(L*C1))+(1/(L*C2)) )); +L1 = (1/(4*(%pi^2)*(f_o^2)))*( (1/C1) + (1/C2) );// in H +L1 = L1 * 10^3;// in mH +f_o = 2050;// in kHz +f_o = f_o * 10^3;// in Hz +L2 = (1/(4*(%pi^2)*(f_o^2)))*( (1/C1) + (1/C2) );// in H +L2 = L2 * 10^3;// in mH +disp("The range of inductance values is : "+string(L2)+" mH to "+string(L1)+" mH"); -- cgit