blob: 76b4dc61fe1059e29b62db8e22d5a75b18c8b368 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc
disp("Example 5.44")
printf("\n")
disp("calculate the value of Capacitor for a RC phase shift oscillator")
printf("Given\n")
R=1000
//frequency of oscillation
f=5000
//capacitor value
C=1/(2*%pi*R*f*sqrt(6))
printf("Capacitor value \n%e farad \n",C)
|