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 --- 2084/CH16/EX16.7/16_7.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 2084/CH16/EX16.7/16_7.sce (limited to '2084/CH16/EX16.7') diff --git a/2084/CH16/EX16.7/16_7.sce b/2084/CH16/EX16.7/16_7.sce new file mode 100755 index 000000000..3c42fd537 --- /dev/null +++ b/2084/CH16/EX16.7/16_7.sce @@ -0,0 +1,17 @@ +//developed in windows XP operating system 32bit +//platform Scilab 5.4.1 +clc;clear; +//example 16.7 +//calculation of the tunning frequency of fork B + +//given data +nu1=384//tunning frequency(in Hz) of fork A +n=6//number of beats +t=2//time(in s) taken by the beats + +//calculation +deltanu=n/t//frequency of beats +nu2=nu1+deltanu//frequency of fork B +nu2dash=nu1-deltanu//another frequency of fork B + +printf('the tunning frequency of fork B is %d Hz or %d Hz',nu2dash,nu2) -- cgit