summaryrefslogtreecommitdiff
path: root/620/CH27/EX27.13/example27_13.sce
blob: adfc5559c3a7e7ecf63b124a60a6c1f2199e3440 (plain)
1
2
3
4
5
6
7
8
9
10
rp=100*10^3;
v=10*10^(-6);
r=50*10^3;
disp("Part a");
vout=v*rp/(rp+r);
disp("the output voltage (in μV) across the tank circuit is"); disp(vout*10^6);
disp("Part b");
z=10*10^3;
vout1=v*z/(z+r);
disp("the output voltage (in μV) is"); disp(vout1*10^6);