blob: 221d06cea3b3a60c582b0eb866234d2d84698013 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Determine total frequency variation when the transconductance of the FET is varied from zero to maximum by the modulating voltage
gm = 9e-3;
fn = 8*5e+7;
f = 50e+6;
C = 50e-12;
Cx = gm/(2*%pi*fn);
F = sqrt(1 + (Cx/C));
del = (0.0352*f)/2.0352;
totaldel = 2*del;
disp(totaldel, 'Total frequency variation is (in Hz)')
|