// StartMathJax Script window.MathJax = {loader: {load: [ 'input/asciimath', 'ui/lazy', 'output/chtml', 'ui/menu']} }; (function() { var script = document.createElement('script'); script.src = "https://cdn.jsdelivr.net/npm/mathjax@3/es5/startup.js"; script.async = true; document.head.appendChild(script); })(); ---------- (Different files) ---------- // UpdateTypeset Script config = { attributes: true, childList: true, subtree: true }; // Callback function to execute when mutations are observed callback = (mutationList, observer) => { for (mutation of mutationList) { if (mutation.type === 'childList') { console.log('A child node has been added or removed.'); MathJax.typeset(); } else if (mutation.type === 'attributes') { console.log(`The ${mutation.attributeName} attribute was modified.`); } } }; // Create an observer instance linked to the callback function observer = new MutationObserver(callback); document.onreadystatechange = () => { if (document.readyState === 'complete') { console.log("Loaded fully according to readyState") targetNode = document.getElementById('content-wrapper') console.log(targetNode) // Start observing the target node for configured mutations observer.observe(targetNode, config); } }
top of page

The Calorie-Counting Count’s Cannon

Updated: Jul 21, 2023

#26 Science in History


25 January 1798


On this day in 1798, Count Rumford, presented his new idea about heat.

Portrait of Count Rumford by Gainsborough

Count Rumford, AKA Sir Benjamin Thompson, was a man of many talents. He was a military strategist, spy and renowned physicist and it was through his experiments with heat that he made one of his most important contributions to science.


Before Count Rumford’s presentation, the prevailing idea was that heat was a fluid, called caloric, that flows from hotter bodies to colder ones. After he presented his paper, “An Inquiry concerning the Source of Heat which is Excited by Friction”, ideas about energy and thermodynamics really start to develop.


Rumford was fascinated by the nature of heat and spent a great deal of time conducting experiments to try and understand it. One of his most famous experiments involved drilling a hole into a cannon barrel and filling it with cold water. He then had a team of men turn a drill inside the barrel. He found that the water began to heat up. He had demonstrated that heat is a form of energy and that it can be converted from mechanical work. This was a revolutionary concept at the time, and it laid the groundwork for the development of thermodynamics.




bottom of page