Search NASASearch

SEARCH · Search NASA

Results for “current ramp-up”

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.

369 records · Page 12

In situ studies on heavy ion irradiation and partial oxidation induced stacking faults and nanograins in tungsten nanolaminates

Understanding the microstructural evolution of tungsten (W) under extreme irradiation environments is critical for its application as a plasma-facing material in future fusion reactors. Heavy ion irradiation study offers expedited damage accumulation and thus allows irradiation tolerance property prediction in a short period of time. In this study we explore in situ Kr ion irradiation of W nanolaminates at 800 °C and uncover a complex interplay of irradiation-induced transformations, including the emergence of stacking faults, nanograin formation, and generation of thickened grain boundaries defined as GB regions with the thickness of up to 15 nm. High-resolution transmission electron microscopy studies reveal the formation of extended planar faults and a metastable hexagonal close-packed (hcp) phase within the body-centered cubic (bcc) matrix. These structural transitions are facilitated by irradiation-induced shear. They are further stabilized by the presence of oxygen, which promotes stacking fault formation and vacancy trapping. Elevated temperatures enhance defect mobility, enabling dynamic recrystallization into ultrafine grains and the thickening of GBs due to defect absorption and impurity segregation. These findings unravel non-equilibrium phase transformation pathways in heavy ion irradiated W and highlight the critical role of impurity-mediated defect dynamics in governing its radiation tolerance properties.

Wazeer, Adil [Purdue University]

Advancing Building Performance: Field Results of Thin-Glass Triple-Pane Window Demonstrations

To meet California and the nation's ambitious energy targets, energy use in the building sector must drop dramatically. Windows continue to be the lowest thermally performing envelope system in the nation's buildings, resulting in poor overall envelope performance and potential impacts to human health and comfort. Current best practice new window performance is typically met by double-pane low-solar-gain glazing. Thin-glass triple-pane windows are a highly promising next step forward in performance and have been deployed in two California multi-family sites to quantify field performance and building energy savings. The technology assessed offers the performance benefits of traditional triple-pane but with little increase in weight or cost, enabling incremental costs competitive with alternative energy reduction solutions for the building envelope. This paper covers a detailed investigation into the demonstration project and measured performance benefits of the windows after a full year of data collection.

Hart, Robert

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.

Fingerprinting Uranium Oxides with Electron Energy Loss Spectroscopy Supported by Theoretical Computations

Uranium oxides occur in a variety of phases that differ in crystal structure and uranium oxidation states. Electron energy loss spectroscopy (EELS) is one of the few techniques that has sufficient spatial resolution and sensitivity to electronic structure to distinguish amongst phases at the nanoscale. However, beam-sensitive materials such as uranium oxides are subject to spectral modification due to interactions with the electron beam. Therefore, theory support is essential to reliably exclude the impact of beam damage and generate true reference datasets. Here we use a comparison of theoretical and experimental spectra to probe the impact of beam damage on O K-edge and U N-edge (N6,7 and N4,5) EELS spectra of various single-valent and mixed-valence uranium oxide bulk phases. Using a low-dose experimental set-up, we show that the O K-edge theoretical spectra are in excellent agreement with experiment for both peak positions and relative intensities of respective peaks. In contrast, U N-edge features are less distinguishing due to the partially localized nature of the U 5f orbitals and overlapping multiplet and spin–orbit coupling effects. This work demonstrates that O K-edge EELS is sufficiently diagnostic to distinguish a wide range of uranium oxides and that the experimental approach used here minimizes beam damage and allows valence state discrimination across the U(IV), U(V) and U(VI) series. When combined with imaging modes available in electron mi-croscopy, the work enables detailed investigation and characterization of uranium redox transformations at the nanoscale.

Carbone, Jacopo

Impact of Advances in Anion Exchange Membranes and Ionomers on Alkaline Fuel Cells

Abstract The operation of low‐temperature electrochemical energy conversion systems (fuel cells, electrolyzers) at high pH values is of perennial interest due to the possibility of moving away from expensive platinum group metal catalysts and reducing cost. Historically, the anion exchange membranes (AEMs) and ionomers have been hampered by performance (ionic conductivity, mechanical strength) and chemical stability issues. In this context, select developments over the past decade in alternate AEM chemistries, water management methods, and production of membrane electrode assemblies (MEAs) that have enabled a significant leap in performance of alkaline fuel cells are examined. These developments are linked to performance improvements in alkaline H 2 /O 2 fuel cells and also consider developments in alkaline fuel cells using nitrogen‐containing fuels (ammonia, hydrazine), carbon‐containing fuels (alcohols, glycols), and boron‐containing fuels (sodium borohydride, ammonia borane). Finally, current challenges and bottlenecks are identified, and potential solutions are proposed.

Chemistry

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 (

Machine learning the electric field response of condensed phase systems using perturbed neural network potentials

Abstract The interaction of condensed phase systems with external electric fields is of major importance in a myriad of processes in nature and technology, ranging from the field-directed motion of cells (galvanotaxis), to geochemistry and the formation of ice phases on planets, to field-directed chemical catalysis and energy storage and conversion systems including supercapacitors, batteries and solar cells. Molecular simulation in the presence of electric fields would give important atomistic insight into these processes but applications of the most accurate methods such as ab-initio molecular dynamics (AIMD) are limited in scope by their computational expense. Here we introduce Perturbed Neural Network Potential Molecular Dynamics (PNNP MD) to push back the accessible time and length scales of such simulations. We demonstrate that important dielectric properties of liquid water including the field-induced relaxation dynamics, the dielectric constant and the field-dependent IR spectrum can be machine learned up to surprisingly high field strengths of about 0.2 V Å −1 without loss in accuracy when compared to ab-initio molecular dynamics. This is remarkable because, in contrast to most previous approaches, the two neural networks on which PNNP MD is based are exclusively trained on molecular configurations sampled from zero-field MD simulations, demonstrating that the networks not only interpolate but also reliably extrapolate the field response. PNNP MD is based on rigorous theory yet it is simple, general, modular, and systematically improvable allowing us to obtain atomistic insight into the interaction of a wide range of condensed phase systems with external electric fields.

Science & Technology - Other Topics

Simulation to a Newborn Supernova Remnant from a Low-mass Iron Core Star

Supernova remnant observations show a high degree of asymmetry, mixing, and inhomogeneity. These asymmetries are seeded during the early seconds of the explosion and are further enhanced and modified as the shock and ejecta move through the stellar progenitor and into the circumstellar medium. We present simulations of a 9.6 M⊙ zero-metallicity progenitor initialized after shock revival and evolved for several years when the ejecta is in the circumstellar medium. A suite of 1D and 2D simulations examines the effects of neutron-star wind and radioactive decay heating. In 1D, decay heating forms a low-density bubble that suppresses the reverse shock. While in 2D, the heating is localized to metal-rich pockets, inflating them and compressing the surrounding material into dense shells. In 3D, the neutron-star wind and decay heating modify the plume morphology, producing more large-scale structures. The extended plume morphology leads to an asymmetrical shock breakout. After breakout, the leading plumes cannot keep up with the shock front, resulting in deceleration and fragmentation by the reverse shock while retaining the large-scale asymmetry. The projected ejecta morphology and velocities are strongly viewing angle dependent. The relatively uniform metal-rich distribution does not resemble the strongly inhomogeneous ejecta structure of Cas A. The 160-isotope decay network shows that 24.4% of the radioactive heating comes from decay chains other than the canonical 56Ni chain. The low explosion energy, low 56Ni yield, and Ni/Fe ratio greater than unity suggest an observational signature similar to an electron capture supernova.

Neopane, Sudarshan [University of Tennessee (UT)]

Alumina–Titania Nanolaminate Condensers for Hot Programmable Catalysis

Nanolaminates composed of thin alternating layers of Al2O 3 and TiO 2 (ATO) were engineered by using atomic layer deposition as the dielectric material for a Pt-on-carbon catalytic condenser. Investigation assessed synthesis parameters including the deposition temperature, Al 2 O 3 and TiO 2 layer thicknesses, total number of layers, and a capping Al 2 O 3 layer on the maximum charge accumulation in the Pt catalyst. The highest capacitance ATO configuration demonstrated a specific capacitance of ∼1200 nF/cm 2 with working voltages of ±5 V, enabling the storage of 4 × 10 13 electrons or holes per cm 2 at room temperature. The ATO devices exhibited enhanced capacitance at elevated temperatures of up to 400 °C, suggesting the suitability of these materials for high-temperature applications. Adsorption of carbon monoxide on the Pt/C-ATO device characterized by grazing incidence infrared spectroscopy showed changes in the surface binding energy of 13.1 ± 0.8 kJ/mol for an applied external voltage bias of ±1 V.

37 INORGANIC, ORGANIC, PHYSICAL, AND ANALYTICAL CH

Lessons learned from the development and implementation of a workforce training curriculum for advanced controls for high performance HVAC systems

Over the past decade, academic research on advanced controls has slowly transitioned into new software platforms, giving rise to various companies developing and deploying these innovative products, including solutions for light commercial HVAC systems. However, the current workforce remains widely unprepared to install, maintain and operate these systems, particularly complex software-based control platforms, as most workforce training programs still focus on traditional building automation for large commercial buildings. This paper presents the development and piloting of curriculum for three key types of professionals: ● Technicians (trade-level): installing and maintaining modern high-performance HVAC systems and controls ● Programmers (undergrad-level): developing and implementing advanced controls ● Engineers and energy professionals (undergrad/grad-level): managing and evaluating system performance We share details of the material developed including training videos, open-source software, instruction manuals. We also present the results of a pilot implementation of the training materials with real students.

Casillas, Armando

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

Hierarchical Multi-agent Large Language Model Reasoning for Autonomous Heterogeneous Catalyst Discovery

Artificial intelligence is reshaping scientific exploration, but most methods automate procedural tasks without engaging in scientific reasoning, limiting autonomy in discovery. We demonstrate that hierarchical agentic large language model reasoning can efficiently drive simulation and scientific exploration. Across two chemical applications, CO adsorption on Cu surface transition metal adatoms and on M–N–C catalysts, reasoning-guided exploration reduces required atomistic simulations by up to 90% relative to heuristic or random selection. Comparisons across single-agent, multi-agent, and stochastic baselines show that hierarchical strategies yield more coherent and information-efficient search trajectories. Reasoning traces reveal chemically grounded decisions that cannot be explained by semantic bias or stochastic sampling. We realize these agentic reasoning strategies in Materials Agents for Simulation and Theory in Electronic-structure Reasoning (MASTER), a multimodal system that translates natural language into density functional theory workflows. Altogether, multi-agent collaboration accelerates heterogeneous catalyst discovery and marks a step toward more autonomous, reasoning-guided scientific exploration.

30 DIRECT ENERGY CONVERSION

Trace benzene capture by decoration of structural defects in metal–organic framework materials

Abstract Capture of trace benzene is an important and challenging task. Metal–organic framework materials are promising sorbents for a variety of gases, but their limited capacity towards benzene at low concentration remains unresolved. Here we report the adsorption of trace benzene by decorating a structural defect in MIL-125-defect with single-atom metal centres to afford MIL-125-X (X = Mn, Fe, Co, Ni, Cu, Zn; MIL-125, Ti 8 O 8 (OH) 4 (BDC) 6 where H 2 BDC is 1,4-benzenedicarboxylic acid). At 298 K, MIL-125-Zn exhibits a benzene uptake of 7.63 mmol g −1 at 1.2 mbar and 5.33 mmol g −1 at 0.12 mbar, and breakthrough experiments confirm the removal of trace benzene (from 5 to <0.5 ppm) from air (up to 111,000 min g −1 of metal–organic framework), even after exposure to moisture. The binding of benzene to the defect and open Zn(II) sites at low pressure has been visualized by diffraction, scattering and spectroscopy. This work highlights the importance of fine-tuning pore chemistry for designing adsorbents for the removal of air pollutants.

Chemistry

Ultrafast One-Dimensional Peierls-Distortion Dynamics in 1⁢T′−Re⁢S 2 Revealed by 4D Electron Microscopy

Rhenium disulfide (ReS 2 ), a prototypical 2D semiconductor with an anisotropic 1⁢T′ structure due to the pronounced Peierls distortion, has demonstrated great potential for polarization-dependent optoelectronics and photonics. Here, we report an ultrafast phase transition occurring within 1 ps, accompanied by a one-dimensional Peierls-distortion relaxation in 1⁢T′−ReS 2 revealed with combined 4D electron microscopy and time-dependent density functional theory calculations. Upon femtosecond laser pulse excitation, the Re-Re dimerization morphology rapidly transforms from a diamond cluster to zigzag chains and persists for several nanoseconds. Here, this ultrafast Peierls-distortion relaxation is further verified by transient changes in optical anisotropy via polarization-dependent transient absorption spectroscopy. Time-dependent density functional theory calculations attribute this novel phase transition to strong correlation between Peierls distortion and impulsive photoexcited carrier doping, predicting a transient band-gap collapse. This Letter opens up an exciting avenue for ultrafast control of Peierls-distortion-induced anisotropy and the metal-insulator transition in 1⁢T′−ReS 2 .

1T’-ReS2

The effect of gamma ray irradiation on few layered MoSe2: A material for nuclear and space applications

In recent years, emerging two-dimensional (2D) materials, such as molybdenum diselenide (MoSe2), have been at the center of attention for many researchers. This is due to their unique and fascinating physicochemical properties that make them attractive in space and defense applications that include shielding harsh irradiation environments. In this study, we examined the effects of gamma (γ) rays at various doses on the structural, chemical, and optical properties of MoSe2 layers. After the samples were exposed to intense gamma radiation (from a 60Co source) with various exposure times to vary the total accumulated dosage (up to 100 kGy), Raman and photoluminescence spectroscopies were used to study and probe radiation-induced changes to the samples. When compared to pristine materials, very few changes in optical properties were typically observed, indicating good robustness with little sensitivity, even at relatively high doses of gamma radiation. The imaging using scanning electron microscopy revealed a number of nano-hillocks that were connected to substrate alterations. X-ray photoelectron spectroscopies revealed that Mo’s binding energies remained the same, but Se’s binding energies blueshifted. We associated this shift with the decrease in Se vacancies that occurred after irradiation as a result of Mo atoms creating adatoms next to Se atoms. When compared to pristine materials, very few changes in optical, chemical, and structural properties were typically observed. These findings highlight the inherent resilience of MoSe2 in hostile radioactive conditions, which spurs additional research into their optical, electrical, and structural characteristics as well as exploration for potential space, energy, and defense applications.

Materials Science

Collapse of magnetized white dwarfs as site of heavy-element formation and kilonova signal

We present the first end-to-end calculation connecting the accretion-induced collapse (AIC) of a magnetized, rapidly rotating white dwarf to observable kilonova signatures, combining two-dimensional (2D) general-relativistic neutrino-magnetohydrodynamic simulations, followed by radiation hydrodynamics with in-situ nuclear network and 2D Monte Carlo radiative transfer with spatially resolved heating rates. Unlike all previous unmagnetized AIC models – which predicted proton-rich, $^{56}$Ni-dominated ejecta – strong magnetic fields eject ${\approx }\, 0.2\, \mathrm{ M}_\odot$ of neutron-rich material ($\langle Y_e \rangle \sim 0.24$) on dynamical time-scales, before neutrino irradiation can raise the electron fraction, enabling strong r-process nucleosynthesis up to and beyond the third peak. The resulting kilonova is lanthanide-rich ($X_{\rm lan} \approx 8~{{\ \rm per\ cent}}$) and dominated by near-infrared emission. We compute synthetic light curves in the Large Synoptic Survey Telescope and J ames Webb Space Telescope bands and find striking agreement, without parameter tuning, between the observations of AT 2023vfi/GRB 230307A and our broadband light curves for polar viewing angles. These results establish magnetized AIC as a viable channel for heavy r-process element production and a compelling progenitor candidate for long-duration gamma-ray bursts with kilonova signatures.

MHD

AutoBEM: A scalable framework for nationwide building energy simulation and retrofit evaluation in the United States

This paper presents AutoBEM, an integrated, automated framework for nationwide building energy modeling and retrofit evaluation in the United States. Unlike prior UBEM platforms that either rely primarily on representative stock sampling or operate at city scale, AutoBEM automates the generation of building-resolved, physics-based EnergyPlus/OpenStudio simulation models at national scale using GIS-derived geometry, prototype-based assumptions, and standardized scalable workflows. Leveraging the Model America dataset and high-performance computing, AutoBEM generates and simulates energy models for 122.9 million buildings, representing 97.8% of the U.S. building stock. These models are being made publicly and freely available as the Model America v1.0 (MAv1) dataset. AutoBEM supports detailed, building-level assessments of energy consumption, CO2 emissions, and post-processed anthropogenic heat emissions (AHE), and evaluates 151 energy conservation measures (ECMs) using localized utility pricing and building characteristics. In addition, AutoBEM incorporates both typical and future climate conditions through integration with Typical Meteorological Year (TMY) and Future TMY (fTMY) weather data derived from IPCC scenarios. In a case study of Phoenix, Arizona, AutoBEM identified several high-efficiency HVAC upgrades and selected envelope measures with short modeled payback periods (1.5 years) for certain building types and standards. Simulations under future climate scenarios (SSP5–RCP8.5) project an 11.3% increase in electricity use and a 32% reduction in natural gas demand by 2100, underscoring the need for climate-adaptive retrofit planning. By enabling reproducible, bottom-up, and location-specific analysis at scale, AutoBEM provides a step toward a national digital twin of the built environment and supports data-driven screening and planning for decarbonization, resilience, and energy equity.

Li, Hang [ORNL] (ORCID:0000000306001920)

A generative machine learning model for designing metal hydrides applied to hydrogen storage

Developing new metal hydrides is a critical step toward efficient hydrogen storage in carbon-neutral energy systems. However, existing materials databases, such as the Materials Project, contain a limited number of well-characterized hydrides, which constrains the discovery of optimal candidates. This work presents a framework that integrates causal discovery with a lightweight generative machine learning model to generate novel metal hydride candidates that may not exist in current databases. Using a dataset of 450 samples (270 training, 90 validation, and 90 testing), the model generates 1000 candidates. After ranking and filtering, six previously unreported chemical formulas and crystal structures are identified, four of which are validated by density functional theory simulations and show strong potential for future experimental investigation. Overall, the proposed framework provides a scalable and time-efficient approach for expanding hydrogen storage datasets and accelerating materials discovery.

generative model