diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1859/CH7/EX7.31 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1859/CH7/EX7.31')
-rwxr-xr-x | 1859/CH7/EX7.31/exa_7_31.sce | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/1859/CH7/EX7.31/exa_7_31.sce b/1859/CH7/EX7.31/exa_7_31.sce new file mode 100755 index 000000000..a8d7b8a3b --- /dev/null +++ b/1859/CH7/EX7.31/exa_7_31.sce @@ -0,0 +1,30 @@ +// Exa 7.31
+clc;
+clear;
+close;
+// Given data
+f1= 1;// in MHz
+f1=f1*10^6;// in Hz
+f2= 2;// in MHz
+f2=f2*10^6;// in Hz
+C1=480;// in pF
+C1=C1*10^-12;// in F
+C2=90;// in pF
+C2=C2*10^-12;// in F
+R=10;// in ohm
+omega1= 2*%pi*f1;// in radians/sec
+omega2= 2*%pi*f2;// in radians/sec
+
+// Part (i)
+Cd= (C1-4*C2)/3;// in F
+disp(Cd*10^12,"Self capacitance of the coil in pF")
+
+// Part(ii)
+Q_indicated1= 1/(omega1*(C1+Cd)*R);
+disp(Q_indicated1,"Indicated or effective Q for first measurement")
+Q_True1= 1/(omega1*C1*R);
+disp(Q_True1,"True Q for first measurement is ");
+Q_indicated2= 1/(omega2*(C2+Cd)*R);
+disp(Q_indicated2,"Indicated or effective Q for second measurement")
+Q_True2= 1/(omega2*C2*R);
+disp(Q_True2,"True Q for second measurement is ");
|