From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 275/CH5/EX5.5.40/Ch5_5_50.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 275/CH5/EX5.5.40/Ch5_5_50.sce (limited to '275/CH5/EX5.5.40') 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 -- cgit