Search NASASearch

SEARCH · Search NASA

Results for “new avenue for end-of-life disposal”

Search indexed NASA NTRS and DOE OSTI research on propulsion, heat transfer, battery materials and energy systems. Follow report and document links to the original sources.

Quote a phrase for an exact phrase match. Source license links do not imply unrestricted reuse.

3,385 records · Page 44

Scaling Demand Flexibility: Building on 30 Years of Energy Efficiency Success

With electricity consumption across the United States (US) and Canada anticipated to grow, energy efficiency program administrators have a key role to play in helping to ensure energy affordability and reliability in support of the broader economic systems utilities and grid support. Connected, demand side load balancing solutions, such as load shifting heating, ventilation and air conditioning (HVAC) systems and managed charging for electric vehicles (EVs), can dynamically manage energy, allowing for more volumetric electricity consumption without incurring the expense of upgraded transmission and distribution capabilities. When combined, or aggregated, many small loads can be managed to have meaningful impact on energy demand on the grid. Utilities and their partners have an opportunity to leverage decades of experience and the infrastructure needed to assess, design, implement, and measure programs to scale up the adoption of equipment with built-in load flexibility capabilities. Current efforts among a wide variety of electricity system service providers, utilities, standards agencies, regulators, national labs and private industry stakeholders aim to identify common standards, metrics, and methodologies for valuing grid services offered by demand side equipment. By combining those efforts with decades of proven energy efficiency resources, utilities are poised to effectuate a scaling up of equipment with energy management capabilities installed in homes and businesses across the US and Canada. This paper will provide an overview of how utilities are approaching this era of load growth and new peak demands across the United States and Canada. It will highlight the specific strategies that program administrators are employing to advance market transformation for grid-enabled products and devices that have the greatest potential to reduce energy use and increase load flexibility.

Grant, Peter

Vesicular Stomatitis Virus Transmission Dynamics Within Its Endemic Range in Chiapas, Mexico

Vesicular stomatitis virus (VSV), comprising vesicular stomatitis New Jersey virus (VSNJV) and vesicular stomatitis Indiana virus (VSIV), emerges from its focus of endemic transmission in Southern Mexico to cause sporadic livestock epizootics in the Western United States. A dearth of information on the role of potential arthropod vectors in the endemic region hampers efforts to identify factors that enable endemicity and predict outbreaks. In a two-year, longitudinal study at five cattle ranches in Chiapas, Mexico, insect taxa implicated as VSV vectors (blackflies, sandflies, biting midges, and mosquitoes) were collected and screened for VSV RNA, livestock vesicular stomatitis (VS) cases were monitored, and serum samples were screened for neutralizing antibodies. VS cases were reported during the rainy (n = 20) and post-rainy (n = 2) seasons. Seroprevalence against VSNJV in adult cattle was very high (75–100% per ranch) compared with VSIV (0.6%, all ranches). All four potential vector taxa were sampled, and VSNJV RNA was detected in each of them (11% VSNJV-positive of 874 total pools), while VSIV RNA was only detected in four pools of mosquitoes. Our findings indicate that VSNJV is the dominant serotype across our sampling sites with a variety of potential insect vectors involved in its transmission throughout the year. Although no livestock cases were reported in Chiapas during the dry season, VSNJV was detected in insects during this period, suggesting that mechanisms other than transmission from livestock support VSV endemicity.

Virology

Application of Ibuprofen Sodium Dihydrate for Thermochemical Energy Storage

Thermochemical energy storage (TCES) offers a transformative approach to address grid instability by harnessing reversible chemical reactions for efficient heat storage and release. Here, we introduce pharmaceutical organic salt hydrates as a class of materials with exceptional performance for low-grade waste heat recovery. We demonstrate ibuprofen sodium dihydrate (ISD) as an example organic hydrate exhibiting a dehydration temperature range of 60-110 °C and a remarkable dehydration enthalpy of up to 59.5 kJ/mol of water, ideally suited for capturing industrial and residential waste heat. Using rigorous multimodal characterization, including thermogravimetric analysis, differential scanning calorimetry, in-situ FTIR, in-situ PXRD, and NMR, we demonstrate ISD's superior thermal, chemical, and structural stability over 150 hydration-dehydration cycles, achieving an unprecedented cycling efficiency of ~99.9%. Compared to conventional inorganic salt hydrates like strontium chloride hexahydrate and calcium oxalate monohydrate, ISD showcases enhanced durability without deliquescence or pulverization, even under high-humidity conditions. In-situ analyses confirm the transition from ISD to ibuprofen sodium anhydrous (ISA) proceeds with structural reorganization, thereby combining the dehydration mechanism with phase transitions, resulting in higher energy storage capacity. Microstructural analyses reveal that repeated water intercalation and structural transitions aid in creating significant porosity that enhances water transport kinetics, further improving the hydration/dehydration performance. By combining the phase change and chemical dehydration mechanisms, ISD paves the way for designing a new class of organic salt hydrates, offering tunable properties to meet diverse thermal energy storage demands and supporting sustainable grid resilience.

Thangaraj, Kavin C.

3D Woven Mid-Density Carbon Phenolic (3MDCP) Full-Scale Heatshield Development for Mars Sample Return (MSR) Earth Entry System (EES)

The Mars Sample Return (MSR) mission will be returning samples of Martian soil to Earth. The samples will be returned in the Earth Entry System (EES). The EES capsule is protected by a new thermal protection system; the 3-Dimensionally Woven, Mid-Density, Carbon Phenolic (3MDCP) material which is derived from the Heatshield for Extreme Entry Environment Technology (HEEET). The baseline 3MDCP design is a single piece thermal protection system that avoids the manufacturing and certification challenges associated with a tiled configuration. A 3MDCP heatshield begins as a flat woven preform that is formed to the final heatshield shape and then infused with phenolic resin. A NASA Ames lead team, in collaboration with Spirit Textiles (formerly TEAM Inc.), Fiber Materials Inc. (FMI, a Spirit AeroSystems Company), and Kratos SRE, has been developing and demonstrating the processes to fabricate the 3MDCP heatshield and characterize the resulting properties. The process of forming the flat woven preform into the final heatshield shape, a sphere-cone geometry with a 52.5° cone angle, involves local but substantial movement of the yarns in the weave. This results in continuous fibers across the single piece heatshield, albeit with property variations between different regions of the heatshield. This presentation will provide a high-level status of 3MDCP development for the MSR EES heatshield. This will include an overview of the manufacturing processes with an emphasis on the impact of forming on fiber orientation, material properties, and performance. Results comparing preliminary formed and flat materials will be shown. Additionally, the presentation will layout the broader plan for property testing and tie-in to aerothermal performance.

Peter Edward Marshall

Improving the Performance of NEML2 with Modern Graph Compilation Backends

NEML2 vectorizes constitutive-model evaluation for large-scale multiphysics simulation, using PyTorch as its tensor backend so that a batch of material-point updates runs on CPU or GPU through a single implementation. In the two prior reports in this series it was a C++-native library, deployed through TorchScript tracing and just-in-time (JIT) compilation; it has since been rewritten from the ground up into a Python-native library deployed through Ahead-of-Time Inductor (AOTInductor), a modern PyTorch graph-compilation backend. The rewrite is driven by a persistent tension, not a language preference: NEML2 composes constitutive models at runtime from a registry of small, independently-authored pieces, and that flexibility is difficult to reconcile with the compile-time knowledge an efficient GPU kernel needs. This report documents the rewrite and the investment that accompanied it: the AOTInductor export pipeline that turns a Python-authored model into a portable, Python-free compiled artifact loadable from pure C++; the eager and compiled runtimes and the new implicit solver layer built on them; a head-to-head benchmark of legacy JIT against AOTInductor; the physics-model catalog and its worked examples; the developer tooling; and the corresponding overhaul of MOOSE’s NEML2 integration that lets MOOSE consume it. A central objective is to examine whether modern PyTorch graph-compilation backends are effective for MOOSE GPU integration. The benchmark answers directly: AOTInductor outperforms legacy JIT on every GPU scenario measured, by 1.0–4.5×. Modern graph-compilation backends are effective for MOOSE GPU integration, and AOTInductor specifically – not compilation in the abstract – is why.

Hu, Gary (Tianchen) [Argonne National Laboratory (

Mechanism of H 2 plasma-enabled reduction of hematite thin films

Hydrogen plasma is gaining significant interest as a promising pathway for direct iron ore reduction and for lowering process temperatures but the reduction mechanism remains poorly understood. In this work we analyzed the plasma and thermal reduction of thin-film hematite (Fe 2 O 3 ) at temperatures below 340 °C using X-ray diffraction and scanning electron microscopy with energy-dispersive X-ray spectroscopy. Plasma reduced the incubation period by an order of magnitude and increased the reduction rate by a factor of 2.6 compared to thermal reduction. Plasma-produced H-atoms facilitate the formation of numerous iron nucleation sites, bypassing the energetically unfavorable dissociative adsorption of H 2 on iron oxide. These iron nuclei can autocatalyze the reduction of the surrounding hematite via a hydrogen spillover mechanism. Our results demonstrate that plasma-derived H-atoms primarily impact the initial nucleation-limited stage. These new insights provide a mechanistic framework that can aid the implementation and optimization of hydrogen plasma-assisted iron oxide reduction at reduced temperatures.

08 HYDROGEN

Ion Transport in Concentrated Crosslinked Solid Polymer Electrolytes

Crosslinking polymers is a common approach to create mechanically stable solid materials such as polymer electrolytes for lithium batteries. In conventional liquid electrolytes, the solvent molecules move freely to accommodate the field-induced motion of ions. However, in crosslinked polymer electrolytes, the rearrangement of polymer segments is constrained by the deformation limits of the network. Herein, we develop a new transport model that accounts for both the formation of concentration gradients and the elasticity of the electrolyte. The elasticity is incorporated by adding an additional term related to the entropy of crosslinked strands to the electrochemical potential of the salt. The resulting Crosslink Model contains two adjustable parameters: $\mathcal{N}$, the average number of monomers in a strand, and λ crit , the maximum strain the network can sustain. These solid-like constraints produce singularities in the governing transport equations, fundamentally altering the concentration profiles. Plateaus in salt concentrations emerge near the electrodes, and network elasticity introduces a strain overpotential. When compared to a Baseline Model ($\mathcal{N}$ → ∞, equivalent to concentrated solution theory), which predicts steepest gradients near the electrodes, both models yield similar current–voltage relationships. Model predictions are compared to electrochemical data for a poly(ethylene oxide)-based crosslinked polymer electrolyte.

Patel, Vivaan [University of California, Berkeley,

The Thermal and Kinematic Sunyaev–Zeldovich Effect in Galaxy Clusters and Filaments Using Multifrequency Temperature Maps of the Cosmic Microwave Background A399–A401 Cluster Pair Case Study

We present a multifrequency and multi-instrument methodology to study the physical properties of galaxy clusters and cosmic filaments using cosmic microwave background observations. Our approach enables simultaneous measurement of both the thermal (tSZ) and kinematic Sunyaev–Zeldovich (kSZ) effects, incorporates relativistic corrections, and models astrophysical foregrounds such as thermal dust emission. We do this by jointly fitting a single physical model across multiple maps from multiple instruments at different frequencies, rather than fitting a model to a single Compton-y map. We demonstrate the success of this method by fitting the A399–A401 galaxy cluster pair and filament system using archival data from the Planck satellite and new, targeted deep data from the Atacama Cosmology Telescope, covering 11 different frequencies over 14 maps from 30 GHz to 545 GHz. Our tSZ results are consistent with previous work using Compton-y maps. We measure the line-of-sight peculiar velocities of the cluster–filament system using the kSZ effect and find statistical uncertainties on individual cluster peculiar velocities of ≲600 km s −1 , which are competitive with current state-of-the-art measurements. Additionally, we measure the optical depth of the filament component with a signal-to-noise of 8.5σ and reveal hints of its morphology. This modular approach is well-suited for application to future instruments across a wide range of millimeter and submillimeter wavebands.

Ajay S Gill

Chapter 9 - Pre-Flight Tests

Pre-flight testing is critical to the success of any flight test program. Pre-flight tests are performed to measure and evaluate the characteristics of an aircraft in a non-flying environment and to verify that these characteristics are as desired. Since aircraft systems are becoming more and more complex, conducting proper pre-flight testing to help identify system characteristics and deficiencies prior to flight is more important now than ever before. Much flight test time has been lost fixing problems that should have been found and corrected prior to flight. Accidents have occurred because pre-flight tests and verification procedures were not conducted thoroughly enough to identify the aircraft's characteristics properly or to find system discrepancies. Proper pre-flight testing helps ensure that the aircraft is ready to fly and contributes toward an efficient, productive, and safe flight test program. The reader should be aware that this Section is dedicated to the testing that should take place prior to the first flight. There are other "pre-flight" tests that take place prior to each individual flight. These latter tests are not discussed in this Section. The following paragraphs of this Section describe significant tests that are usually accomplished prior to flying a new or highly modified aircraft. Test objectives, descriptions, products, and requirements are provided in the following subsections: 9.1 Wind tunnel tests 9.2 Simulation tests 9.3 Propulsion tests 9.4 Weight and balance tests 9.5 Ground vibration tests 9.6 Structural loads tests 9.7 Gain margin tests 9.8 Verification and calibration tests 9.9 Taxi tests The specific examples given and the test facilities mentioned in this Section will illustrate the approach taken and the techniques used by the US Air Force; however, they are typical of those used by other test organizations.

Paul W Kirsten

Cooperative and bifunctional Ga-Ca-Cr 2 O 3 @CaO structured monoliths as versatile platform for reactive capture of CO 2 and its subsequent conversion to ethylene

Cooperative and bifunctional materials (BFMs) that integrate adsorbents and catalysts offer a promising strategy for the reactive capture of CO 2 to produce valuable fuels and chemicals. In this study, we developed structured BFMs via 3D printing that combine CaO as an adsorbent with Ga–Ca–Cr 2 O 3 metal oxides as the catalyst for the reactive capture of CO 2 and its subsequent conversion to C 2 H 4 via the oxidative dehydrogenation of C 2 H 6 (CO 2 -ODHE). Three different Ga–Ca compositions were used to modify the catalyst surface characteristics and enhance C 2 H 4 selectivity. In these formulations, Ga ions stabilize the oxygen lattice of the BFM, while Ca ions interact strongly with Cr to form CaCrO 4 , thereby altering the oxygen species and enhancing the material’s basic properties. Under adsorption–reaction conditions at 600–650 °C, the optimal BFM achieved an excellent C 2 H 4 selectivity of 96.4 %, attributed to a balanced redox process and improved basicity that facilitate efficient C 2 H 6 conversion and rapid desorption of C 2 H 4 without excessive oxidation. Overall, this work provides new insights into the formulation of BFMs monoliths and highlights the critical role of catalytic surface modification in enhancing C 2 H 4 selectivity in the CO 2 -ODHE reactive capture process.

C2H4 production

Surveyor Project Final Report: Part 1 - Project Description and Performance, Volume 1

The Surveyor Project planned and conducted seven unmanned lunar missions for which spacecraft were launched between May 1966 and January 1968. Each of the spacecraft was successfully launched with the then newly developed Atlas/Centaur vehicle which utilized for the first time a high-specific-impulse, liquid hydrogen/liquid oxygen fueled stage. Five of the spacecraft successfully soft-landed and returned a great quantity of engineering and scientific data on extensive postlanding operations, accomplishing all mission and project objectives. Four of the spacecraft soft-landed at selected mare sites to provide data which were required to support the Apollo Program. The final spacecraft was then successfully used for scientific investigation of a contrasting site in the rugged lunar highlands. Surveyor was a fully attitude-stabilized spacecraft designed to receive and execute a wide variety of earth commands, as well as to perform certain automatic functions including the critical terminal-descent and soft-landing sequences. Significant new and advanced subsystems that were developed and/or used in combination to enable Surveyor to execute the complex terminal phase of flight were: (1) a solid-propellant main retro motor, (2) throttlable liquid-propellant vernier engines (also used for midcourse velocity correction), (3) highly sensitive velocity- and altitude-sensing radars, and (4) an automatic closed-loop guidance and control system. The first Surveyor spacecraft carried a survey television camera which, together with other engineering instrumentation, obtained in-flight and postlanding data. The complement of instruments carried on later missions included various combinations of the following additional devices: (1) a soil mechanics/surface sampler instrument for picking, digging, and handling lunar surface material; (2) an alpha scattering instrument for performing a chemical analysis of the lunar surface material; and (3) magnets attached to the spacecraft for determining magnetic properties of the soil.

Jet Propulsion Laboratory

Surveyor Project Final Report: Part 1 - Project Description and Performance, Volume 2

The Surveyor Project planned and conducted seven unmanned lunar missions for which spacecraft were launched between May 1966 and January 1968. Each of the spacecraft was successfully launched with the then newly developed Atlas/Centaur vehicle which utilized for the first time a high-specific-impulse, liquid hydrogen/liquid oxygen fueled stage. Five of the spacecraft successfully soft-landed and returned a great quantity of engineering and scientific data on extensive postlanding operations, accomplishing all mission and project objectives. Four of the spacecraft soft-landed at selected mare sites to provide data which were required to support the Apollo Program. The final spacecraft was then successfully used for scientific investigation of a contrasting site in the rugged lunar highlands. Surveyor was a fully attitude-stabilized spacecraft designed to receive and execute a wide variety of earth commands, as well as to perform certain automatic functions including the critical terminal-descent and soft-landing sequences. Significant new and advanced subsystems that were developed and/or used in combination to enable Surveyor to execute the complex terminal phase of flight were: (1) a solid-propellant main retro motor, (2) throttlable liquid-propellant vernier engines (also used for midcourse velocity correction), (3) highly sensitive velocity- and altitude-sensing radars, and (4) an automatic closed-loop guidance and control system. The first Surveyor spacecraft carried a survey television camera which, together with other engineering instrumentation, obtained in-flight and postlanding data. The complement of instruments carried on later missions included various combinations of the following additional devices: (1) a soil mechanics/surface sampler instrument for picking, digging, and handling lunar surface material; (2) an alpha scattering instrument for performing a chemical analysis of the lunar surface material; and (3) magnets attached to the spacecraft for determining magnetic properties of the soil.

Jet Propulsion Laboratory

Fracture‐Resistant and Thermally Insulating Ultrahigh‐Temperature Carbide Foams

Dense ultrahigh‐temperature ceramics (UHTCs) carbides are recognized as potential materials for thermal protection systems (TPS) owing to properties beyond existing structural materials’ capabilities. Recent advances in UHTCs have enabled the development of multiscale porous microstructures. Herein, it is highlighted that the porosity in UHTCs are no longer treated as a defect but as a functional property specifically tailored for thermal insulation. It is a promising solution to design and fabricate bulk UHTC foams via a freeze‐drying (FD) approach followed by calibrated pressureless spark plasma sintering. Herein, monolithic TaC and HfC UHTC foams and their composite show the partial solid–solution formation of (Ta, Hf)C with porosity ≥50%. TaC–HfC foam (≈80–92 N) shows an intermediate load‐bearing capability compared to monolithic TaC (≈120–135 N) and HfC (≈28–35 N) foams, with no evident cracking on the sample surface. The thermal conductivity of partial solid‐solution TaC–HfC foam increases up to fivefold compared to parent UHTC foams. In the results, solid solutions’ efficacy and pores’ unidirectionality in providing thermal insulation to TaC–HfC while maintaining its high‐load bearing capability are illustrated. In conclusion, the developed technique establishes a new paradigm shift in UHTCs, expanding their potential for TPS in extreme environments.

36 MATERIALS SCIENCE

Sulfur outgassing and in-gassing in lunar orange glass beads and implications for 33S “Anomaly” in the Moon

Our recent investigations have discovered inward diffusion (in-gassing) of moderately volatile elements (MVEs; e.g., Na, K and Cu) from volcanic gas into volcanic beads/droplets. In this work, we examine the distribution of sulfur in lunar orange glass beads. Our analyses reveal that sulfur exhibits a non-uniform distribution across the beads, forming “U” or “W” shaped profiles typical of in-gassing. A model developed to assess sulfur contributions from different sources (original magmatic sulfur versus atmospheric in-gassed sulfur) in the orange beads indicates that atmospheric sulfur in-gassed during eruption contributes approximately 9–24 % to the total sulfur content of an orange bead, averaging around 16 %. This in-gassed sulfur is derived from the eruption plume, where atmospheric sulfur could undergo photochemical reactions induced by UV light, leading to mass independent fractionation and a distinct sulfur isotope signature. Interestingly, a recent study discovered a small mass independent isotope fractionation of sulfur in lunar orange glass beads in drive tube 74002/1 and a lack of such mass independent isotope fractionation in black glass beads in the same lunar sample. This finding contrasts with sulfur in lunar basalts, which typically exhibit mass dependent fractionation. With our work, the observed mass independent fractionation signal in sulfur isotopes of orange beads can be attributed to the in-gassing of photolytic sulfur in the optically thin part of the eruption plume where UV light can penetrate. Using the sulfur isotope data of lunar orange beads, we estimate that the Δ33S value of atmospheric sulfur is approximately −0.18 ‰. Our study provides new insights into the complex dynamics of volatile elements in lunar volcanic processes, highlighting the role of in-gassing in shaping sulfur isotope signatures in volcanic glass beads.

Xue Su

Eliminating chemo-mechanical degradation of lithium solid-state battery cathodes during >4.5 V cycling using amorphous Nb2O5 coatings

Abstract Lithium solid-state batteries offer improved safety and energy density. However, the limited stability of solid electrolytes (SEs), as well as irreversible structural and chemical changes in the cathode active material, can result in inferior electrochemical performance, particularly during high-voltage cycling (>4.3 V vs Li/Li + ). Therefore, new materials and strategies are needed to stabilize the cathode/SE interface and preserve the cathode material structure during high-voltage cycling. Here, we introduce a thin (~5 nm) conformal coating of amorphous Nb 2 O 5 on single-crystal LiNi 0.5 Mn 0.3 Co 0.2 O 2 cathode particles using rotary-bed atomic layer deposition (ALD). Full cells with Li 4 Ti 5 O 12 anodes and Nb 2 O 5 -coated cathodes demonstrate a higher initial Coulombic efficiency of 91.6% ± 0.5% compared to 82.2% ± 0.3% for the uncoated samples, along with improved rate capability (10x higher accessible capacity at 2C rate) and remarkable capacity retention during extended cycling (99.4% after 500 cycles at 4.7 V vs Li/Li + ). These improvements are associated with reduced cell polarization and interfacial impedance for the coated samples. Post-cycling electron microscopy analysis reveals that the Nb 2 O 5 coating remains intact and prevents the formation of spinel and rock-salt phases, which eliminates intra-particle cracking of the single-crystal cathode material. These findings demonstrate a potential pathway towards stable and high-performance solid-state batteries during high-voltage operation.

Science & Technology - Other Topics

MARVEL Reactor Digital Engineering Developments

The MARVEL reactor project has served to introduce a new generation of engineers to the processes required to transform a reactor design from simply an idea on paper into what will be an approved, constructed, and operational nuclear power system. Much as there have been advances in materials, analysis, and evaluation methodologies over the 50 years since the last reactor was built at INL, so too has the technology for managing the engineering process itself advanced. Digital Engineering tools and methods provide improved coordination between previously siloed engineering disciplines, reduced burdens of non-value-added data transcription processes and bring forward insights and improvements that might otherwise fall later in the design stage, where changes are much more costly. While the tools and techniques to support the full digital engineering vision are not yet complete, the MARVEL design processes provide valuable demonstrations and validations of key aspects and illuminate further areas for implementation by subsequent projects.

21 - SPECIFIC NUCLEAR REACTORS AND ASSOCIATED PLAN

Multi-Agent Swarm State of the Art Report

The Next-Generation Multi-Agent Swarm (NGS) Study conducted by NASA’s Ames Research Center for NASA’s Space Technology Mission Directorate (STMD) will develop a comprehensive understanding of emerging multi-agent swarm capabilities. The study aims to identify existing swarm capabilities and asses their potential for persistent lunar space situational awareness, surface monitoring, and distributed autonomy demonstrations. A key objective is to inform the design of a next-generation multi-agent swarm that can perform autonomous distributed remote sensing, position, navigation, and timing (PNT) services, automated deployment that leverages autonomy, edge computing, and interoperable networking to enable cooperative operations without the need for immediate human operation. This study will address specific shortfalls identified by STMD, including intelligent multi-agent constellations, autonomy, edge computation, position, navigation, and timing for small spacecraft, small spacecraft propulsion, and space situational awareness (1625, 1438, 1433, 1557, 1431, 1430, 1589). The NASA Ames Mission Design Center (MDC) will provide subject matter expertise to support systems engineering trades, while experts in autonomy and spacecraft swarms in NASA’s Intelligent Systems Division will lead the study and focus on identifying emerging next-generation swarm capabilities. The study objectives include: capturing the current state-of-the-art for multi-agent swarm capabilities, evaluating technologies and creating technology roadmaps, and developing at least one new technology demonstration mission concept. This initial NGS study report surveys the current state of the art in technology areas relevant for the next-generation multi-agent swarm design. Our primary focus is on surveying relevant deployed space systems1, supplemented with selective analysis of relevant proposed missions and technology developments that have yet to fly.

agent

Adsorption of hydroxamic acid ligands for improved extraction of rare earth elements from monazite ores

Efficient separation of rare earth element (REE) ores via froth flotation requires the development of novel ligands with enhanced adsorption capacity and selectivity. To realize these advances, understanding the mechanisms underlying interactions between the ligand and mineral surfaces is essential. This study systematically evaluates the adsorption behavior of alkyl- and aromatic alkyl-substituted hydroxamic acid ligands on monazite surfaces using complementary spectroscopic techniques, including UV–visible (UV–vis) spectroscopy, Raman spectroscopy, infrared spectroscopy, and vibrational sum frequency generation (SFG) spectroscopy, together with the ab initio molecular dynamics (AIMD) simulations. Among the studied ligands, octanohydroxamic acid (OHA) and 4-ethoxy-N,2-dihydroxybenzamide (EDHBA) exhibit high adsorption capacity under basic pH (8–10) by forming multilayers on the surface. OHA has a higher equilibrium adsorption capacity compared to EDHBA, but it forms a less stable multilayer susceptible to disruption in the presence of interfering ions. AIMD results show that OHA adopts a single stable chelating geometry, while EDHBA exhibits multiple binding modes involving distinct interactions with La surface atoms and phosphate-bound oxygens, resulting in more complex adsorption kinetics. The variations in surface binding and intermolecular interactions observed between alkyl and aromatic molecules influence the differences in adsorption kinetics, equilibrium adsorption capacities on the mineral surface, and their flotation performance. This work provides valuable insight into the adsorption mechanism of ligands at mineral interfaces, which is crucial for guiding the design of new ligands with enhanced separation performance.

Zhou, Muchu [ORNL] (ORCID:0000000182650215)