diff options
Diffstat (limited to '3830/CH2/EX2.4/Ex2_4.sce')
-rw-r--r-- | 3830/CH2/EX2.4/Ex2_4.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3830/CH2/EX2.4/Ex2_4.sce b/3830/CH2/EX2.4/Ex2_4.sce new file mode 100644 index 000000000..419eb7297 --- /dev/null +++ b/3830/CH2/EX2.4/Ex2_4.sce @@ -0,0 +1,21 @@ +// Exa 2.4
+
+clc;
+clear;
+
+// Given
+
+// Transistor Colpitts oscillator
+L = 100*10^-3; // Inductance(H)
+C1 = 0.005*10^-6; // Capacitor(F)
+C2 = 0.01*10^-6; // Capacitor(F)
+
+// Solution
+
+C = C1*C2/(C1+C2);
+printf(' By calculation, C = %.2f pf \n',C*10^12);
+fo = 1/(2*%pi*sqrt(L*C));
+
+printf(' The frequency of oscillator = %.1f kHz \n',fo*10^-3);
+
+// The answer provided in the textbook is wrong
|