diff options
Diffstat (limited to '275/CH5/EX5.5.43/Ch5_5_43.sce')
-rwxr-xr-x | 275/CH5/EX5.5.43/Ch5_5_43.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/275/CH5/EX5.5.43/Ch5_5_43.sce b/275/CH5/EX5.5.43/Ch5_5_43.sce new file mode 100755 index 000000000..cb9d68563 --- /dev/null +++ b/275/CH5/EX5.5.43/Ch5_5_43.sce @@ -0,0 +1,10 @@ +clc
+disp("Example 5.43")
+printf("\n")
+disp("calculate the frequency of oscillation of RC phase shift oscillator")
+printf("Given\n")
+R=500
+C=0.1*10^-6
+//frequency of oscillation
+f=1/(2*%pi*R*C*sqrt(6))
+printf("frequency of oscillation \n%f hz\n",f)
|