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 --- 991/CH15/EX15.10/Example15_10.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 991/CH15/EX15.10/Example15_10.sce (limited to '991/CH15/EX15.10') diff --git a/991/CH15/EX15.10/Example15_10.sce b/991/CH15/EX15.10/Example15_10.sce new file mode 100755 index 000000000..485863971 --- /dev/null +++ b/991/CH15/EX15.10/Example15_10.sce @@ -0,0 +1,14 @@ +//Example 15.10. +clc +format(6) +disp("(i) To find capacitance, C:") +disp(" Frequency of oscillation is") +disp(" fo = 1 / 2*pi*fo*R*C*sqrt(6+4K)") +disp(" C = 1 / 2*pi*fo*R*C*sqrt(6+4(Rc/R))") +fo=1/(2*%pi*(10*10^3)*(7.1*10^3)*sqrt(6+((4*40*10^3)/(7.1*10^3)))) // in Farady +x1=fo*10^9 // in nF +disp(x1," C(nF) =") +disp("(ii) To find hfe:") +disp(" We know that hfe >= 23 + 29(R/Rc) + 4(Rc/R)") +h=23+(29*(7.1/40))+(4*(40/7.1)) +disp(h," hfe >=") \ No newline at end of file -- cgit