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 /752/CH6/EX6.6.2 | |
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 '752/CH6/EX6.6.2')
-rwxr-xr-x | 752/CH6/EX6.6.2/6_6_2.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/752/CH6/EX6.6.2/6_6_2.sce b/752/CH6/EX6.6.2/6_6_2.sce new file mode 100755 index 000000000..3bc7727f2 --- /dev/null +++ b/752/CH6/EX6.6.2/6_6_2.sce @@ -0,0 +1,22 @@ +clc;
+// page no 212
+// prob no 6.6.2
+//Voltage controlled Clapp oscillator
+// Capacitor is in pF and inductor in uH
+C1=300; C2=300; Cc=20; L=100;
+// A) With zero applied bias,the total tuning capacitor is
+Vd1=0;a=0.5;Co=20;
+Cd1=Co/(1-(Vd1/0.5))^a;
+Cs1=1/((1/C1)+(1/C2)+(1/Cc)+(1/Cd1));
+disp('pF',Cs1, +'1.The total tuning capacitor is');
+// The frequency of oscillation is
+f=1/(2*%pi*sqrt(L*10^-6*Cs1*10^-12));
+disp('Hz',f,'2.The frequency of oscillation is');
+// B) With a reverse bias of -7 v, the tuning capacitance becomes
+Vd2=-7;
+Cd2=Co/(1-(Vd2/0.5))^a;
+Cs2=1/((1/C1)+(1/C2)+(1/Cc)+(1/Cd2));
+disp('pF',Cs2, +'3.The total tuning capacitor is');
+// The frequency of oscillation is
+f=1/(2*%pi*sqrt(L*10^-6*Cs2*10^-12));
+disp('Hz',f,'4.The frequency of oscillation is');
\ No newline at end of file |