Skip to main content

How to measure growth rate of the plants?


I know some times you wondered, like me how fast plants are growth per day, on the contrary, we don't have that patience to observe the plant whole day. To solve this problem inventor W.D.Frost, Alex P. Anderson came up with a device or set up called Auxanometer.

"Auxanometer" is a device used to measure the change in the growth of plants.
Very easy and simple in construction even you can make it in your home.
Auxanometer




This device has contained a pulley, a measuring meter, a clamp rod and some weight and threads.
Thread and weight are used for creating an upward force on the plants so that it grows straight in a vertical direction. As shown in the above picture.
After a few days when the plant grows weight is come down as this tread is connected through the pulley, the pulley will be rotated. This rotation is lead to measure by a scale.
If the scale is calibrated we will get directly the change in height of the plant.

rate of change in hieght= (difference in height /observation hours)

BONUS::

 The species of 45 genera of Bamboo is the fastest rate of growing plants in the world! its growth rate has been found 91 cm per day. WOW!!!

 The Saguaro cactus is the slowest rate of growing plant in the world, it takes approx 150 years to grow 10 cm.


Hope you learn something new today!

Comments

Popular posts from this blog

Make a Translator using python?

CODE : pip install translate create a new script file eg. english in the same directory. from translate import Translator translator=Translator( to_lang = "hi" ) with open ( './english.txt' , 'r' ) as file2: text=file2.read() translation=translator.translate(text) print(translation) or another way  jj= str ( input ( 'enter th english' )) from translate import Translator translator=Translator( to_lang = "hi" ) with open ( './english.txt' , 'w' ) as file2: file2.write( f'-- { jj } ' ) with open ( './english.txt' , 'r' ) as file2: text = file2.read() translation=translator.translate(text) print (translation) DEMO:

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...

Projectile motion using LabVIEW

A projectile is projected with a velocity of V (in m/s) and at an angle  (in degree) to the horizontal. Build a VI to compute (i) Maximum height reached (in meters), (ii) Time of flight (in seconds) and (iii) Range of the projectile (in meters).