summaryrefslogtreecommitdiff
path: root/1691/CH2/EX2.33
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1691/CH2/EX2.33
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1691/CH2/EX2.33')
-rwxr-xr-x1691/CH2/EX2.33/exmp2_33.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/1691/CH2/EX2.33/exmp2_33.sce b/1691/CH2/EX2.33/exmp2_33.sce
new file mode 100755
index 000000000..a58718a58
--- /dev/null
+++ b/1691/CH2/EX2.33/exmp2_33.sce
@@ -0,0 +1,17 @@
+//Example 2.33
+clc
+disp("Using the expression of the frequency,")
+disp("f = 1 / 2*pi*RC*sqrt(6)")
+c=(1/(2*%pi*10*sqrt(6)*10^6))*10^9
+format(7)
+disp(c,"Therefore, C(in nF) =")
+disp("For FET phase shift oscillator,")
+disp("|A| = g_m*R_L and |A| >= 29")
+rl=(29/5000)*10^3
+format(4)
+disp(rl,"Therefore, g_m*R_L >= 29 i.e. R_L(in k-ohm) >=")
+disp("With R_L = 5.8 k-ohm,")
+disp("R_L = R_D*r_d / R_D+r_d")
+rd=40/5.8965
+format(7)
+disp(rd,"Therefore, R_D(in k-ohm) =")