From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 2702/CH6/EX6.4/Ex_6_4.sce | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 2702/CH6/EX6.4/Ex_6_4.sce (limited to '2702/CH6/EX6.4') diff --git a/2702/CH6/EX6.4/Ex_6_4.sce b/2702/CH6/EX6.4/Ex_6_4.sce new file mode 100644 index 000000000..466792dfc --- /dev/null +++ b/2702/CH6/EX6.4/Ex_6_4.sce @@ -0,0 +1,15 @@ +// Exa 6.4 +clc; +clear; +close; +// Given data +R1= 200;// in kohm +R1=R1*10^3;// in ohm +R2=R1;// in ohm +C1= 200;// in pF +C1= C1*10^-12;// in F +C2=C1;// in F +f= 1/(2*%pi*R1*C1);// in Hz +disp(f*10^-3,"Frequency of oscilltions in kHz is : ") + +// Note: Calculation to find the value of f in the book is wrong, so answer in the book is wrong -- cgit