diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2084/CH16/EX16.7 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2084/CH16/EX16.7')
-rwxr-xr-x | 2084/CH16/EX16.7/16_7.sce | 17 |
1 files changed, 17 insertions, 0 deletions
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)
|