Skip to main content

Why hollow semi spherical shape is present underneath the beverage can bottles ?


look at the above image, this semi-spherical shape we are talking about, in this question.
We try to find some reason behind it.

1)Standing stability from a structural point of view.
 
**in both case of MOI 1/2 is multiplied

in this above fig we have compared both the probable cases, As a result, we got "second can" have more mass moment of inertia means more force required to tilt, or we can say have more stability at standing position. That's why we prefered the second case over the first one.

2) Standing stability at the rough surface.

here provided video clip is enough to understand...





Hope You Like This!

any further Addition is welcome, feel free to the discussion.

Comments

  1. Is this similar to the case of humans having flat feet are more likely to slip than humans having curvature in their feet?

    ReplyDelete
    Replies
    1. In case of human , curvature is reason of stiffness,,more stiffness means more control over the leg.

      Delete
  2. But flat feets has a relation to friction with the surface so I am asking does the concept of MI also applicable on feets

    ReplyDelete
  3. Can't we relate it to P=F/A..coz force is same in both the cases ,
    the one less area of contact will be pressing the surface more and will be required more force therefore to tip it off..

    ReplyDelete

Post a Comment

Popular posts from this blog

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

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.

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: