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 /3014/CH6/EX6.4 | |
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 '3014/CH6/EX6.4')
-rwxr-xr-x | 3014/CH6/EX6.4/Ex6_4.sce | 11 | ||||
-rwxr-xr-x | 3014/CH6/EX6.4/Ex6_4.txt | 3 |
2 files changed, 14 insertions, 0 deletions
diff --git a/3014/CH6/EX6.4/Ex6_4.sce b/3014/CH6/EX6.4/Ex6_4.sce new file mode 100755 index 000000000..ce81ea668 --- /dev/null +++ b/3014/CH6/EX6.4/Ex6_4.sce @@ -0,0 +1,11 @@ +clc
+//Given that
+E = 7.9e10 // Young’s modulus in N/m^2
+rho = 2650 // Density in Kg/m^3
+t = 0.006 // Thickness of quartz crystal in m
+printf("Example 6.4\n")
+v = sqrt(E/rho)// Calculation of velocity
+lambda = 2*t // Calculation of fundamental wavelength
+nu = v/lambda // Calculation of fundamental frequency
+printf("Fundamental frequency is %e Hz.\n\n\n",nu)
+
diff --git a/3014/CH6/EX6.4/Ex6_4.txt b/3014/CH6/EX6.4/Ex6_4.txt new file mode 100755 index 000000000..1b30d8157 --- /dev/null +++ b/3014/CH6/EX6.4/Ex6_4.txt @@ -0,0 +1,3 @@ +
+Example 6.4
+Fundamental frequency is 4.549979e+05 Hz.
|