Skip to main content

Do you know how to measure the distance in space ?


laser retroreflector


The physics behind this is very interesting, In a scratch three perpendicular mirrors are set up together in such a way that every falling beam of light on it will be reflected back to its original source. No matter what incidence angle it falling from. there is a catch!








parallel ray





This special type of structural arrangement of glass is called "retro-reflective glass" and a series of this type of glasses is called Retroreflector.

 How to measure distance?

In a nutshell, Retroreflector has fitted with Spacecraft, a beam of light is sent from the earth, as its property the particular light beam is reflected back to the earth after some while. The time taken to get back the light is measured. This measured time is lead to find the distance between them by the help of some basic equations.

                         velocity of light x  total time taken = 2* distance

Use of retro-reflective glass in daily life 

Not only in space also we use in daily life e.g in the signboard, caution board, traffic police dresses, backlight of cycles etc. Its help to prevent an accident by attracting the attention of the rider while they drive on the road even at dark night. Signboards are illuminated by the source of the light and reflect back to the source itself.






         look at the different of illumination due to retro-reflective glass.



Comments

Popular posts from this blog

How to make dice game by using LabVIEW?

8. Dice Game (Exercise) In a board game a pair of dice (one is 6 sided and the other is 12 sided) is rolled. You win when there is a matching number, or the sum of the numbers rolled is equal to 18. In this problem we would like to build a VI that will do the following: i) Rolls the pair of dice every 100ms and displays the numbers rolled ii) A digital indicator displays the number of times dice rolled iii) An LED glows when you win iv) A digital indicator displays the number of wins v) Program stops after exactly100 rolls.

Image Identify using machine learning in Python.

#pip install imageai #pip install Tensorflow #pip install keras from  imageai.Prediction  import  ImagePrediction import  os from  keras.models  import  load_model Givenimage= "picc.jpg" execution_path=os.getcwd() #print(execution_path) prediction = ImagePrediction() prediction.setModelTypeAsSqueezeNet() prediction.setModelPath(os.path.join(execution_path,  "squeezenet_weights_tf_dim_ordering_tf_kernels.h5" )) prediction.loadModel() predictions, probabilities = prediction.predictImage(os.path.join(execution_path, Givenimage), result_count= 3  ) for  eachPrediction, eachProbability  in   zip (predictions, probabilities):      print (eachPrediction ,  " : "  , eachProbability)   Result: WARNING:tensorflow:11 out of the last 11 calls to <function Model.make_predict_function.<locals>.predict_function at 0x7f941e211598> tr...

Find an Element of a particular position of 2D array in Lab VIEW

4. Application of Structures function For the 2D array as shown, do the followings without using array functions: a) Get the array size b) Extract an element (i,j) c) Extract a row i d) Extract a column j #indexing is off for both the loop # selecting Last Value