diff options
Diffstat (limited to '752/CH10')
-rwxr-xr-x | 752/CH10/EX10.12.1/10_12_1.sce | 11 | ||||
-rwxr-xr-x | 752/CH10/EX10.13.1/10_13_1.sce | 13 |
2 files changed, 24 insertions, 0 deletions
diff --git a/752/CH10/EX10.12.1/10_12_1.sce b/752/CH10/EX10.12.1/10_12_1.sce new file mode 100755 index 000000000..0a926fd76 --- /dev/null +++ b/752/CH10/EX10.12.1/10_12_1.sce @@ -0,0 +1,11 @@ +clc;
+//page no 343
+//problem no 10.12.1
+p=10;t=0.3*10^-6;gm=2*10^-3;
+q=1/p;f_max=q/(2*%pi*t);
+Z2=p/gm;
+R2=Z2;//Z2 is resistance
+//Determination of equivalent tuning capacitance
+C1=t/R2;
+Ceq=gm*t;
+disp('f',Ceq,'The equivaent tuning capacitance is');
\ No newline at end of file diff --git a/752/CH10/EX10.13.1/10_13_1.sce b/752/CH10/EX10.13.1/10_13_1.sce new file mode 100755 index 000000000..37a6b2a10 --- /dev/null +++ b/752/CH10/EX10.13.1/10_13_1.sce @@ -0,0 +1,13 @@ +clc;
+//page no 349
+//problem no 10.13.1
+del_phi_d=12;f_min=100;del_f_max_allow=15000;
+del_phi_rad=(12*%pi)/180;
+del_f_max=del_phi_rad*f_min;
+//Determination of freq deviation
+N=del_f_max_allow/del_f_max;
+l=del_f_max*729;//using six tripler
+f=0.1*729;
+//Determination of signal oscillator signal
+fo=152-f;
+disp('MHz',fo,'fo is best obtained by using two tripler');
\ No newline at end of file |