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 --- 3515/CH6/EX6.7/Ex_6_7.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 3515/CH6/EX6.7/Ex_6_7.sce (limited to '3515/CH6/EX6.7/Ex_6_7.sce') diff --git a/3515/CH6/EX6.7/Ex_6_7.sce b/3515/CH6/EX6.7/Ex_6_7.sce new file mode 100644 index 000000000..f279d67e2 --- /dev/null +++ b/3515/CH6/EX6.7/Ex_6_7.sce @@ -0,0 +1,13 @@ +// Exa 6.7 +format('v',7); +clc; +clear; +close; +// Given data +L= 0.01;// in H +C= 10;// in pF +C= C*10^-12;// in F +f= 1/(2*%pi*sqrt(L*C));// in Hz +disp(f*10^-3,"Frequency of oscillations in kHz is : ") + +// Note: Calculation to find the value of f in the book is wrong, so answer in the book is wrong -- cgit