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 --- 1859/CH7/EX7.23/exa_7_23.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 1859/CH7/EX7.23/exa_7_23.sce (limited to '1859/CH7/EX7.23') diff --git a/1859/CH7/EX7.23/exa_7_23.sce b/1859/CH7/EX7.23/exa_7_23.sce new file mode 100755 index 000000000..29b0eba9f --- /dev/null +++ b/1859/CH7/EX7.23/exa_7_23.sce @@ -0,0 +1,17 @@ +// Exa 7.23 +clc; +clear; +close; +// Given data +fr= 2;// in MHz +fr=fr*10^6;// in Hz +C=230+8;// in pF +C=C*10^-12;// in F +// Formula fr= 1/(2*%pi*sqrt(L*C)) +L= 1/((2*%pi*fr)^2*C);// in H +disp(L*10^6,"Value of L in µH") +// From the first set of data +fr= 1;// in MHz +fr=fr*10^6;// in Hz\ +C= 1/((2*%pi*fr)^2*L);// in F +disp(C*10^12,"Value of C in pF") -- cgit