summaryrefslogtreecommitdiff
path: root/623/CH1/EX1.1.6/U1_C1_6.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /623/CH1/EX1.1.6/U1_C1_6.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '623/CH1/EX1.1.6/U1_C1_6.sce')
-rwxr-xr-x623/CH1/EX1.1.6/U1_C1_6.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/623/CH1/EX1.1.6/U1_C1_6.sce b/623/CH1/EX1.1.6/U1_C1_6.sce
new file mode 100755
index 000000000..fbecb4ed6
--- /dev/null
+++ b/623/CH1/EX1.1.6/U1_C1_6.sce
@@ -0,0 +1,13 @@
+//variable initialization
+interval_s=1 //time difference between two events in frame s (second)
+interval_sdash=4 //time difference between two events in frame s' (second)
+separation_s=0 //spatial separation of two events in frame s (meter)
+c=3*10^8; //speed of light (meter/second)
+v=rand(); //assign a random value to unknown velocity(meter/second)
+
+//calculation of spatial separation of the events in frame s':
+Gamma=interval_sdash/(interval_s-(v*(separation_s))/(c^2)); //calculating gamma
+
+separation=-2*(((Gamma^2)-1)^(1/2))*c; //spatial separation in s' (meter)
+
+printf("\nspatial separation of the events in frame s` = %.2e meter",separation);