blob: 9dede61a49f10adf629559c0d427fb3ad4dcd20b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Grob's Basic Electronics 11e
// Chapter No. 32
// Example No. 32_1
clear; clc;
// Calculate the frequency of the emmiter voltage waveform. Assume n=0.6
// Given data
Rt = 220*10^3; // Resistor Rt=220k Ohms
Ct = 0.1*10^-6; // Capacitor Ct=0.1u Farad
n = 0.6; // Constant
A = 1/(1-n);
T = Rt*Ct*log(A);
f = 1/T;
disp (f,'The Frequency of the Emmiter Voltage Waveform in Hertz')
|