diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /275/CH5/EX5.5.40 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '275/CH5/EX5.5.40')
-rwxr-xr-x | 275/CH5/EX5.5.40/Ch5_5_50.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/275/CH5/EX5.5.40/Ch5_5_50.sce b/275/CH5/EX5.5.40/Ch5_5_50.sce new file mode 100755 index 000000000..c5f6b605c --- /dev/null +++ b/275/CH5/EX5.5.40/Ch5_5_50.sce @@ -0,0 +1,20 @@ +clc
+disp("Example 5.50")
+printf("\n")
+disp("calculate the frequency of oscillation & feedback factor of Hartley oscillator")
+printf("Given\n")
+//inductance
+L1=2*10^-3
+L2=8*10^-3
+//mutual inductance
+M=100*10^-6
+//capacitor
+C=0.001*10^-6
+//total inductance
+L=L1+L2+M
+//frequency of oscillation
+f=1/(2*%pi*sqrt(L*C))
+//feedback factor
+B=L1/L2
+printf("frequency of oscillation of hartley oscillator \n %f hz \n",f)
+printf("feedback factor \n %f \n",B)
\ No newline at end of file |