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 /623/CH1/EX1.1.3 | |
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 '623/CH1/EX1.1.3')
-rwxr-xr-x | 623/CH1/EX1.1.3/U1_C1_3.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/623/CH1/EX1.1.3/U1_C1_3.sce b/623/CH1/EX1.1.3/U1_C1_3.sce new file mode 100755 index 000000000..0b729f727 --- /dev/null +++ b/623/CH1/EX1.1.3/U1_C1_3.sce @@ -0,0 +1,15 @@ +//variable initialization
+x=50,y=20,z=10 //x,y,z cordinates in meters(frame s)
+t=5*10^(-8); //time in seconds(frame s)
+velocity=0.6*3*10^8; //velocity of observer in s' frame relative to s in meter/second
+c=3*10^8; //speed of light in meter/second
+Beta=0.6;
+Gamma=1/((1-Beta^2)^(1/2));
+
+//calculation of cordinates in s' frame
+xdash=Gamma*(x-(velocity*t)); //value of x cordinate in frame s' in meters
+ydash=y; //value of y cordinate in frame s' in meters
+zdash=z; //value of z cordinate in frame s' in meters
+tdash=Gamma*(t-((velocity*x)/(c^2))); //value of t in frame s' in seconds
+
+printf("\nValue of space time cordinates in frame s`:\n\t x`=%.2f meter\n\t y`=%.0f meter\n\t z`=%.0f meter\n\t t`=%.2e second",xdash,ydash,zdash,tdash);
|