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

Science News: Peregrine Moon Lander

9th January: Peregrine Moon Lander faces major challenges


Astrobotic Technology’s Peregrine Moon Lander faces significant challenges following its launch from Cape Canaveral yesterday. The mission was the United States' first attempt at a moon landing since 1972.


Peregrine Lander

 

Shortly after launch, the lander encountered issues in maintaining a stable orientation towards the sun, crucial for charging its batteries through its solar panels. The root cause was identified as a propulsion system anomaly, leading to a critical loss of propellant. This loss hinders the lander's ability to perform a soft landing on the Moon. Despite reorienting the solar array, the mission's success remains in doubt due to the propellant issue.

 

The lander was carrying 20 payloads, including five for NASA, as part of the Commercial Lunar Payload Services initiative to advance lunar exploration. NASA views the challenges as learning opportunities for future lunar exploration.

 

Astrobotic plans a second moon landing attempt with a larger lander, Griffin, in collaboration with SpaceX, indicating continued efforts in lunar exploration despite the setbacks.




 

I'm always eager to hear from you, so please feel free to leave your comments! Your feedback is much appreciated.



logo for sciteach


bottom of page