Skip to main content

Earthquakes

An earthquake (also known as a quake, tremor or temblor) is the perceptible shaking of the surface of the Earth, resulting from the sudden release of energy in the Earth's crust that creates seismic waves. Earthquakes can be violent enough to toss people around and destroy whole cities. The seismicity or seismic activity of an area refers to the frequency, type and size of earthquakes experienced over a period of time. Earthquakes are measured using observations from seismometers. The moment magnitude is the most common scale on which earthquakes larger than approximately 5 are reported for the entire globe. The more numerous earthquakes smaller than magnitude 5 reported by national seismological observatories are measured mostly on the local magnitude scale, also referred to as the Richter magnitude scale. These two scales are numerically similar over their range of validity. Magnitude 3 or lower earthquakes are mostly imperceptible or weak and magnitude 7 and over potentially cause serious damage over larger areas, depending on their depth. The largest earthquakes in historic times have been of magnitude slightly over 9, although there is no limit to the possible magnitude. Intensity of shaking is measured on the modified Mercalli scale. The shallower an earthquake, the more damage to structures it causes, all else being equal. At the Earth's surface, earthquakes manifest themselves by shaking and sometimes displacement of the ground. When the epicenter of a large earthquake is located offshore, the seabed may be displaced sufficiently to cause a tsunami. Earthquakes can also trigger landslides, and occasionally volcanic activity. In its most general sense, the word earthquake is used to describe any seismic event — whether natural or caused by humans — that generates seismic waves. Earthquakes are caused mostly by rupture of geological faults, but also by other events such as volcanic activity, landslides, mine blasts, and nuclear tests. An earthquake's point of initial rupture is called its focus or hypocenter. The epicenter is the point at ground level directly above the hypocenter. 
                              If a big earthquake hits, here are all the precautions you need to ...
                                 Largest Earthquake Recorded - World's Biggest Earthquake

Comments

Popular posts from this blog

Chemical reaction and equation

  Chemical reactions -   The transformation of chemical substance into a new chemical substance by making and breaking of bonds between different atoms is known as Chemical Reaction.  Signs of a chemical reaction These factors denote that a chemical reaction has taken place- change of state of substance, change of color of substance,evolution of heat, absorption of heat, evolution of gas and evolution of light. Chemical Equation:   The representation of chemical reaction by means of symbols of substances in the form of formulae is called chemical equation.  E.g. - H 2  + O 2  ⇒ H 2 O                        Balanced Chemical Equation:   A balanced chemical equation has number atoms of each element equal on both left and right sides of the reaction.                                    *No...

The manufacture of Biodiesel from used cooking oil

ABSTRACT                      The increasing awareness of the depletion of fossil fuel resources and the environmental benefits of biodiesel fuel has made it more attractive in recent times. Its primary advantages deal with it being one of the most renewable fuels currently available and it is also non-toxic and biodegradable. It can also be used directly in most diesel engines without requiring extensive engine modifications. However, the cost of biodiesel is the major hurdle to its commercialization in comparison to petroleum-based diesel fuel. The high cost is primarily due to the raw material, mostly neat cooking oil. Used cooking oil is one of the economical sources for biodiesel production. However, the products formed during frying, can affect the transesterification reaction and the biodiesel properties.     The production of biodiesel from waste cooking oil offers a triple-facet solution: economic, environmen...

Learning to recognize handwritten digits

The Digits data set of the Scikit-learn library provides numerous data-sets that are useful for testing many problems of data analysis and prediction of the results. Some Scientist claims that it predicts the digit accurately 95% of the times. Perform data Analysis to accept or reject this Hypothesis. In this project, we are using the Handwritten Digits dataset which is already ready in the sklearn library. we can import the dataset  from sklearn import datasets digits = datasets . load_digits () Info about Dataset: print ( digits . DESCR ) OUTPUT: main_data = digits [ 'data' ] targets = digits [ 'target' ] len ( main_data ) % matplotlib inline plt . subplot ( 321 ) plt . imshow ( digits . images [ 1791 ], cmap = plt . cm . gray_r , interpolation = 'nearest' ) plt . subplot ( 322 ) plt . imshow ( digits . images [ 1792 ], cmap = plt . cm . gray_r , i...