summaryrefslogtreecommitdiff
path: root/3648/CH13/EX13.4/Ex13_4.sce
blob: ec6646bc3db0cb6e255c3f0bf5d470d244fed95d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//Example 13_4
clc();
clear;
//To draw a picture on the first three resonance frequencies
l=6      //Units in meters
n=1
lamda1=(2*l)/n      //Units in meters
n=2
lamda2=(2*l)/n      //Units in meters
n=3
lamda3=(2*l)/n      //Units in meters
speed=24       //Units in meters/sec
f1=speed/lamda1           //Units in Hz
f2=speed/lamda2           //Units in Hz
f3=speed/lamda3           //Units in Hz
printf("The first resonance frequency is F1=%d Hz\n",f1)
printf("The second resonance frequency is F2=%d Hz\n",f2)
printf("The third resonance frequency is F3=%d Hz\n",f3)