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 /1535/CH1/EX1.1 | |
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 '1535/CH1/EX1.1')
-rwxr-xr-x | 1535/CH1/EX1.1/Ch01Ex1.sci | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1535/CH1/EX1.1/Ch01Ex1.sci b/1535/CH1/EX1.1/Ch01Ex1.sci new file mode 100755 index 000000000..fe62baca8 --- /dev/null +++ b/1535/CH1/EX1.1/Ch01Ex1.sci @@ -0,0 +1,10 @@ +// Scilab Code Ex1.1 : Page-23 (2010)
+A = 4/2; // Amplitude of SHM, cm
+x = 0; // Mean position of oscillating particle, cm
+v = 12; // Velocity of the particle at the mean position, cm/s
+// As v = omega*sqrt(A^2 - x^2), solving for omega
+omega = v/sqrt(A^2 - x^2);
+printf("\nThe time period of SHM = %5.2f s", (2*%pi)/omega);
+
+// Result
+// The time period of SHM = 1.05 s
|