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

Definitions: Enthalpy changes

For the following, let AB represent a compound


* ‘The energy change when…’


Lattice Enthalpy

*… 1 mole of an ionic compound is formed from its gaseous ions under STP (298K, 100kPa).

Always exothermic

Standard Enthalpy Change of Formation

*… 1 mole of compound is formed from its constituent elements in their standard state.

Usually exothermic.

Standard Enthalpy Change of Atomisation

*… 1 mole of gaseous atoms are formed from the element in its standard state.

Always endothermic (bonds are broken)

1st Ionisation Energy

*… 1 mole of gaseous 1+ ions is formed from gaseous atoms

Always endothermic (an electron overcomes the attraction from the nucleus)

2nd Ionisation Energy

*… mole of gaseous 2+ ions forms from 1 mole gaseous 1+ ions

Always endothermic (electron overcomes nuclear attraction)

1st Electron Affinity

*… 1 mole of gaseous 1- ions forms from gaseous atoms

Exothermic (electron attracted to the outer shell by the nucleus)

2nd Electron Affinity

*… 1 mole of gaseous 2- ions forms from 1 mole gaseous 1- ions

Endothermic (arriving electron is repelled)

Enthalpy Change of Solution

*… 1 mole of a compound is dissolved in water under standard conditions

Can be endothermic or exothermic

Enthalpy Change of Hydration

*… 1 mole of aqueous ions are formed from their gaseous ions under standard conditions

Exothermic process


22 views0 comments

Recent Posts

See All
bottom of page