Skip to main content

Physics—India Adopts New Standards for measuring Units

     India Adopts New Standards for                              measuring Units

The CSIR-NPL (National physical laboratory),
is indiasI official reference keeper of units of measurements, on May 20th, released a set of recommendations requiring that school textbook, engineering-education books, and course curriculum update the definition of the kilogram.


New units–
  • The kilogram derived it's provenance from the weight of a block of a platinum-iridium alloy housed at the International Bureau of weights and measures in France. All the prototypes that served as national reference standards, including the one at new Delhi's CSIR-NPL, were calibrated to it.
  • The kilogram joined other standard units of measure such as the second, meter, ampere, Kelvin,  mole, and candela that would no longer be defined by physical objects.


Impact of this steps—
  • The purpose of a system units is to enable worldwide coherence of measurements.
  • The measures are now based on unchanging universal, physics constants. The kilogram now hinges on the definition of the Planck Constant, a constant of nature that relates to how matter releases energy.
  • With the definition of the 'Kilogram' getting a global, technical makeover, textbook's—from those used in schools to ones recommended by engineering colleges in India— are set to undergo an update.
  • An updated kilogram doesn't mean that weights everywhere will be thrown off balance. For everyday measurements–whether it's for high-precision drug manufacturing or retail weighing machines—will continue doing it the same way.
  • The NPL itself will be relying on the kilogram maintained in the U.S-based National Institute of standards and technology to calibrate its one-kilogram weight.
  • CSIR-NPL, is also in the process of making its own 'Kibble Balance', a device that was used to measure the Planck Constant and thereby reboot the kilogram.

Comments

Popular posts from this blog

What is HTML or HTML tags

HTML 1) HTML stands for Hyper Text Markup Language 2) Created by Ten Berners-Lie in 1991 but published in 1995 3) It is Client side web technology. 4) It has predefined elements are called tags, used to"markup" a text documents. HTML TAGS 1 <html>_____</html>     Declare the Web page to be written in HTML. 2 <head>_____</head>       Delimits the pages head. 3 <title>______</title>       Defines the title.(not display on the page) 4 <body>_____</body>      Delimits the pages body. 4 <hn>_____</hn>      Delimits a level in heading. 5 <b>_____</b>      Set in boldface 6 <i>_____</i>       Set in italics. 7 <center>_____</center>      Center on the page horizontal. 8 <ul>_____</ul>     ...

Dalton's Atomic Theory—(Chemistry)

Dalton's Atomic Theory The theory that' all matter is made up of very tiny indivisible particles (atoms)' is called atomic theory of matter. Dalton's put forward his Atomic Theory of matter in 1808. The various postulates of Dalton's atoAto Theory of matter are as follows: All the matter is made up of very small particles called 'atoms'. Atoms cannot be divided. Atoms can neither be created nor destroyed Atoms are of various kinds. There are as many kinds of atoms as are elements. All the atoms of a given element are identical in every respect, having the same mass, size and chemical properties. Atoms of different elements differ in mass, size and chemical properties. Chemical combination between two elements consists in the joining together of atoms of these elements to form molecules of compounds. Drawbacks of Dalton's Atomic Theory It is now known that some of the statements of Dalton's Atomic Theory of matter are not exactly corre...

Operator Overloading // In Hindi or English // C++TUTORIAL

  Operator Overloading आज हम जानेंगे Operator overloading क्या होता है:― Operator Overloading — Operator हमेशा program के datatype के साथ काम करता है। जैसे int, float, char लेकिन जब हम अपना datatype अलग से बनाते हैं, तो इसे ही हम Operator Overloading कहते हैं।       ये user define data type पे काम करता है।अथवा ये हमारे basic data type पे work करता है। In English― T he way operators work for user-defined types like objects and structures. This is known as operator overloading. For example, Suppose we have created three objects c1 , c2 and result from a class named Complex. अगर आपको ये post अच्छी लगी हो तो हमे comment कर के जरूर बताएं।