Search NASASearch

SEARCH · Search NASA

Results for “High Energy Physics - Phenomenology (hep-ph)”

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.

1,258 records · Page 54

PAH101: A GW+BSE Dataset of 101 Polycyclic Aromatic Hydrocarbon (PAH) Molecular Crystals

Abstract The excited-state properties of molecular crystals are important for applications in organic electronic devices. TheGWapproximation and Bethe-Salpeter equation (GW+BSE) is the state-of-the-art method for calculating the excited-state properties of crystalline solids with periodic boundary conditions. We present the PAH101 dataset ofGW+BSE calculations for 101 molecular crystals of polycyclic aromatic hydrocarbons (PAHs) with up to ~500 atoms in the unit cell. To the best of our knowledge, this is the firstGW+BSE dataset for molecular crystals. The data records include theGWquasiparticle band structure, the fundamental band gap, the static dielectric constant, the first singlet exciton energy (optical gap), the first triplet exciton energy, the dielectric function, and optical absorption spectra for light polarized along the three lattice vectors. The dataset can be used to (i) discover materials with desired electronic/optical properties, (ii) identify correlations between DFT andGW+BSE quantities, and (iii) train machine learned models to help in materials discovery efforts.

Science & Technology - Other Topics

First measurement of polarized spin-density matrix elements and differential cross sections dσ/dt in ω photoproduction off the proton for 2.7 < Eγ < 5.2 GeV using CLAS at Jefferson Lab

We report on the differential cross sections dσ/dt, the unpolarized spin-density matrix elements ρ 00 0 , ρ 1 − 1 0 , Re ρ 10 0 , and the first extraction of the polarized elements Im ρ 10 3 , Im ρ 1 − 1 3 for the reaction γp → pω using the CLAS spectrometer at Jefferson Laboratory. The ω mesons were detected in their dominant charged decay mode, ω → π + π − π 0 , and all t-dependent results are presented in a fine binning for incident photon energies between 2.73 and 5.16 GeV (corresponding to the center-of-mass energy range W ∈ [ 2.45, 3.25 ] GeV). All matrix elements are first measurements for − t > 0.6 GeV2. Moreover, differential cross sections dσ/d(cos Θ c . m . ω ) and the corresponding angle-dependent unpolarized spin-density matrix elements in the Adair frame are presented for the incident photon energy range 1.56–3.80 GeV (corresponding to W ∈ [ 1.95, 2.83 ] GeV). These new ω photoproduction data are consistent with earlier CLAS results but extend the energy range well beyond the nucleon resonance region into the Regge regime. The comparison with Regge-theory-based model predictions shows that the new data impose more stringent constraints on our understanding of ω photoproduction.

Hu, T.

Project Development of an Electrochemical Denitration and Caustic Generation System for HLW Pretreatment at Hanford - 26350

An engineering-scale electrochemical processing skid is proposed to perform the denitration of Hanford tank waste, which would help to mitigate a key process concern with the direct feed processing of the Hanford Tank Waste Treatment and Immobilization Plant (WTP). The reduction of nitrates and organic compounds in the waste feed will directly reduce hazardous NOx and ammonia gases generated during the vitrification process, which in turn will aid in addressing potential regulatory and safety challenges associated with processing large volumes of tank waste. This paper highlights the past legacy work, project layout, accomplishments from Phase 1 and research and development envisioned for Phase 2. An innovative electrochemical denitration and caustic generation (EDCGe) process was demonstrated for the pretreatment of tank waste at the Savannah River Site (SRS) in the early 2000s. The denitration electrolyzer, off-gas abatement system, and caustic generator electrolyzer are being developed with the intent that the denitration electrolyzer will convert nitrate and nitrite anions to nitrogen gas while also yielding other gaseous byproducts, which may include N2O, NH3, VOCs, and H2. The gaseous byproducts will be managed via a tandem off-gas catalyst-bed treatment system. The caustic generation electrolyzer will recycle NaOH from the feed to produce a clean caustic stream for use within the batching tanks at Hanford, aiding in the preparation of waste for WTP. The reduction in hazardous emissions and improved waste treatment processes provides a robust solution for nuclear waste management, contributing to environmental safety and regulatory compliance. The EDCGe technology is being adapted, modified, and updated for the preparation of the Direct Feed-High Level Waste (DF-HLW) flowsheet at Hanford. Phase 1 demonstrated a bench-scale proof-of-concept for reactions involving the denitration electrolyzer and gas phase abatement of ammonia. The electrochemical technology is drawing on the scientific outcomes that were reported in the legacy work. The results from Phase 1 demonstrated the viability of the EDCGe system in reducing the nitrogen species of simple non-radioactive waste simulants. Commercially available alloys used as electrode materials and membranes are being studied for the denitration and caustic generation electrolyzers. The continuation of this project holds promise for broader applications, such as energy-efficient ammonia production, and contributes significant advancements in nuclear waste management. Additional material discovery has been investigated into ceramic Na super ion conductive (NaSICON) materials and off-gas abatement catalyst discovery. NaSICON is of interest for selective transport of Na within the electrolyzers to make a clean caustic stream. Future integration and optimization efforts, informed by Phase 1 results and ongoing research, will continue to drive advancements in nuclear waste management technology. The technology developed for the EDCGe treatment of tank waste will also have broader potential to inform other fields, such as energy-efficient ammonia production, as well as ammonia abatement catalysis through the lessons learned in electrochemical nitrate reduction. The applications and benefits of this research extend beyond Hanford and the Savannah River Site, supported by a collaborative team of scientists and engineers from national labs, academia, and industry, ensuring a comprehensive approach to solving complex waste treatment challenges. The team is leveraging advanced electrochemical technologies, machine learning, novel catalysts tailored for gaseous nitrogen species, and cutting-edge reactor systems to enhance the process efficiency and effectiveness of the denitration process.

Rodene, Dylan [Savannah River National Laboratory

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 (

Design and Realization of Ohmic and Schottky Interfaces for Oxide Electronics

Understanding band alignment and charge transfer at complex oxide interfaces is critical to tailoring and utilizing their diverse functionality. Toward this goal, both Ohmic- and Schottky-like charge transfers at oxide/oxide semiconductor/metal interfaces are designed and experimentally validated. A method for predicting band alignment and charge transfer in ABO 3 perovskites is utilized, where previously established rules for simple semiconductors fail. The prototypical systems chosen are the rare class of oxide metals, SrBO 3 with B = V–Ta, when interfaced with the multifaceted semiconducting oxide, SrTiO 3 . For B = Nb and Ta, it is confirmed that a large accumulation of charge occurs in SrTiO 3 due to the higher energy Nb and Ta states relative to Ti. Furthermore, this gives rise to a high mobility metallic interface, which is an ideal epitaxial oxide/oxide Ohmic contact. On the contrary, for B = V, there is no charge transfer into the SrTiO 3 interface, which serves as a highly conductive epitaxial gate metal. Going beyond these specific cases, this work opens the door to integrating the vast phenomena of ABO 3 perovskites into a wide range of practical devices.

36 MATERIALS SCIENCE

Scalable multiplexed machine learning gas sensor chips for food classification

Multiplexed gas sensor arrays combined with machine learning have unlocked previously inaccessible applications for scent-based sensing. Current platforms are limited by overlapping sensing materials with similar compositions, leading to highly correlated responses, or multistep deposition processes that hinder scalability. In this work, we developed a 16-element monolithic chip with fully distinct sensing layers, enabling a truly heterogeneous array. The system consists of highly sensitive carbon nanotube field effect transistors that are functionalized through a single-step microdispensing method compatible with automated pipetting systems. The resulting chip produces characteristic signal patterns in response to object-specific scent profiles and, when combined with machine learning algorithms, can perform automated object identification. We demonstrate the classification of 16 different objects, including food spoilage and nut allergens, with a 92.6% overall prediction accuracy.

Bassil, Carla [University of California, Berkeley,

Visualizing Millisecond Atomic Dynamics of Nanocrystals in Liquid

Atomic structures of nanomaterials are inherently dynamic and continuously reshaped through interactions with chemical species and external stimuli. Such dynamics are further amplified as the size and dimensionality of nanomaterials decrease. Despite advances in analytical methods, it remains challenging to capture the structural dynamics of nanomaterials in reactive environments with both atomic spatial resolution and commensurate temporal resolution. Here, in this study, we directly visualize atomic-scale dynamics of gold (Au) nanocrystals in reactive liquid environments with millisecond-speed liquid-cell electron microscopy (EM) and deep-learning denoising. We uncover reversible fluctuations in the local crystallinity of Au nanocrystals dependent on the surrounding chemical environment. These transient fluctuations, driven by interactions at nanocrystal–liquid interfaces, critically influence the dissolution kinetics and grain boundary relaxation. By overcoming the spatiotemporal limitations in conventional liquid-cell EM, our findings provide insights into how transient nanoscale structures dictate the stability and reactivity of nanomaterials.

Kang, Sungsu [University of Chicago, IL (United St

Optimal binning of correlated measurements

Experimental measurements are commonly represented on a discrete grid, requiring a balance between granularity and statistical noise. Two strategies have traditionally been used to improve such representations: selecting an appropriate bin width to control discretization error and applying kernel-based smoothing to suppress fluctuations. Despite their shared goal, these approaches have largely developed independently, without a unified statistical description of how discretization and correlation jointly determine measurement precision. Here, we extend the discussion of optimal interval averaging to a correlation-aware setting by Gaussian process regression, which explicitly accounts for correlations among neighboring bins. Starting from first principles, we derive the mean-squared error of discretized measurements and obtain closed-form asymptotic expressions for the optimal bin width and correlation length. When recast in reduced variables, the theory reveals distinct universal scaling laws governing the error in the correlation-free and correlation-controlled regimes. Characterized by intrinsically smooth intensity profiles and counting-based statistics, neutron scattering measurements are well suited for demonstrating the enhanced error contraction enabled by inter-bin correlations. We show that such improvement is achievable over the experimentally accessible Q-range and across multiple instruments and material systems. These results show that explicitly accounting for correlations systematically reshapes the limits of precision in discretized, noise-limited measurements. More broadly, the framework provides a transferable statistical foundation for optimizing data representation, inference, and experimental design across the physical and data sciences.

Tung, Chi-Huan [ORNL] (ORCID:0000000221972074)

Superconductivity in Ruddlesden–Popper nickelates: a review of recent progress, focusing on thin films

The discovery of superconductivity with Tc ∼ 80 K in the nickelate Ruddlesden-Popper bilayer La3Ni2O7 at high pressure has opened a new platform for unconventional superconductivity, followed by the subsequent observation of superconductivity in trilayer La4Ni3O10, also at high pressure. Remarkably, ambient-pressure superconductivity was also observed recently in La3Ni2O7 ultra-thin films when grown on substrates that provide compressive strain. This discovery significantly extends the type of experimental techniques that can be used in nickelates, previously limited due to the high-pressure constraint. Discussing the similarities and differences among these nickel oxides will provide new insights into understanding the mechanism of high-Tc superconductivity in correlated electron systems. In this paper, we review the experimental and theoretical progress on Ruddlesden–Popper nickelates, with emphasis on thin films, and discuss future perspectives and research directions.

Zhang, Yang [ORNL] (ORCID:0000000336235883)

Automated scanning probe microscopy of combinatorial ferroelectric libraries: Gaussian-process-guided exploration and noise-aware experiment planning

Combinatorial materials libraries provide an efficient route for mapping composition–property relationships, but their broader impact depends on rapid, quantitative, and functionally relevant characterization. Scanning Probe Microscopy (SPM), including piezoresponse force microscopy (PFM), offers significant potential for quantitative, functionally relevant combi-library readouts. Here, we implement a fully automated SPM workflow for ferroelectric combinatorial libraries and benchmark Gaussian-process-based Bayesian optimization strategies for autonomous experiment planning. The workflow integrates automated probe motion, contact optimization, imaging, and dual amplitude resonance tracking-PFM spectroscopy, and uses scalarized spectroscopic observables to guide subsequent measurements. Stage motion, probe engagement, in-contact tuning, imaging, spectroscopy, and the choice of the next measurement location all proceed without human input. We demonstrate the approach on Sm-doped BiFeO 3 and Zn x Mg 1−x O libraries. By comparing vanilla Bayesian optimization with a measured-noise variant, we show that explicit treatment of local reproducibility can improve modeling of composition-dependent response when the measured variance is physically meaningful, but can also reduce robustness when variability is dominated by outliers or topographic artifacts. Furthermore, these results establish automated SPM as a bridge between combinatorial synthesis and quantitative functional characterization.

Liu, Yu [University of Tennessee, Knoxville, TN (U

Dressed-State Hamiltonian Engineering in a Strongly Interacting Solid-State Spin Ensemble

In quantum science applications, ranging from many-body physics to quantum metrology, dipolar interactions in spin ensembles are often controlled via Floquet engineering. However, this technique typically reduces the interaction strength between spins and effectively weakens the coupling to a target sensing field, limiting the metrological sensitivity. In this Letter, we develop and demonstrate an alternative method that directly tunes the native dipolar interaction in an ensemble of nitrogen-vacancy (NV) centers in diamond, thereby overcoming these limitations inherent to Floquet engineering. Our approach utilizes dressed-state qubit encoding under a bias magnetic field applied perpendicular to the crystal lattice orientation. This method leads to a 3.2× enhancement of the dimensionless coherence parameter JT 2 compared to state-of-the-art Floquet engineering and a 2.6× (8.3 dB) enhanced sensitivity in ac magnetometry. Furthermore, our results provide a powerful Hamiltonian engineering tool for future studies with NV ensembles and other interacting higher-spin (S > $\frac{1}{2}$) systems.

Quantum control

Composite Lithium Metal Structure to Mitigate Pulverization and Enable Long‐Life Batteries

In lithium metal batteries, non‐uniform stripping of lithium results in pit formation, which promotes subsequent non‐uniform, dendritic deposition. This viscous cycle leads to pulverization of lithium which promotes cell shorting or capacity degradation, symptoms further exaggerated by high electrode areal loading and lean electrolytes. Here, to address this challenge, a composite lithium metal anode is engineered that contains uniformly distributed, nanometer‐sized carbon particles. This composite lithium is shown to strip more uniformly since the growth of non‐uniform pits is intercepted by the carbon particles. This mechanism is corroborated by a continuum electrochemical model. Subsequent lithium deposition on carbon particles is also found to be more uniform than on the surface with irregular pits. Notably, the pulverization rate of composite lithium is 26 times slower than that of commercial lithium. Moreover, in a Li‐S battery with sulfurized polyacrylonitrile cathode, the use of the composite anode extends the cycle life by three times when the areal capacity is 8 mAh cm −2 . The approach of using an engineered lithium composite structure to address challenges during both stripping and plating can inform future designs of lithium metal anodes for high areal capacity operations.

high areal capacity

Process-level cost analysis of hybrid manufacturing pathways for aerospace structural components

Hybrid manufacturing is a promising route for producing complex aerospace components, yet systematic cost benchmarking across multiple additive-subtractive pathways remains limited. This study presents a comprehensive process-based cost analysis of seven hybrid manufacturing routes, including laser powder bed fusion (L-PBF), powder- and wire-directed energy deposition (DED), wire arc additive manufacturing (WAAM), additive friction stir deposition (AFSD), metal binder jetting (MBJ), and agility forging, followed by scanning and finish machining. Parametric cost models incorporating direct material, labor, and energy costs were developed. L-PBF results are discussed in detail for a pickle fork component and directly compared with commercial pricing. Across all hybrid routes, labor emerged as the dominant cost driver, contributing more than 70% of total manufacturing cost in some cases. AFSD exhibited the lowest cost for aluminum components, with MBJ being its 316 L stainless steel counterpart, after accounting for geometric scaling. Benchmarking against industrial quotes suggests that hybrid manufacturing can achieve cost levels comparable to those of commercial services, although labor-intensive processes exhibit greater deviation. The analysis highlights automation of material handling, setup, and supervision as key opportunities for improving economic competitiveness. Overall, the proposed framework provides a quantitative basis for evaluating and optimizing hybrid manufacturing pathways for aerospace applications.

Baruah, Sweta [ORNL] (ORCID:0009000174256207)

Hybrid Bio-Based Composites: Enabling Cellulose Nanofiber (CNF) Incorporation into Composites via Macroscale Natural Fiber Carriers

Cellulose nanofibers (CNFs) have significant potential in composites as additives to improve mechanical properties, melt rheology, and more. However, agglomeration of CNFs is a key challenge in composite melt processing as obtaining nano-level dispersion of CNFs often requires cost- and energy-intensive processes (e.g., solvent exchange or freeze drying) due to the strong hornification tendencies of CNF. Herein, we avoid these challenges by using a natural fiber carrier method to integrate CNF into thermoplastic composites. Fibers are co-dried to create a hybrid fiber feedstock for compounding in which natural fibers are decorated with dispersed nanofibers. The hybridized fibers result in up to a 24% increase in tensile strength and up to a 35% increase in Young’s modulus compared to composites only containing natural fibers. The lignocellulosic nanofibers are found to outperform their purely cellulosic counterpart, which is theorized to be due to either an increased propensity for fibrillation of the lignocellulosic fibers or the increased hydrophobicity of the fibers due to the presence of lignin. Surface analysis of fiber feedstocks, via streaming potential measurements and dynamic light scattering (DLS), confirmed a significant change in the feedstock hydrophobicity before and after hybridization. While mild additions of CNF (1 wt.% on the macroscale fiber) do not impact the composite melt viscosity, the viscosity is found to increase at higher CNF loadings (5 wt.% on the macroscale fiber), indicating its utility as a rheology modifier. Lastly, use of these materials as novel feedstocks for medium-scale additive manufacturing in high-fidelity part production was demonstrated.

bio-based

Phase stability in the Hf-N and Zr-N systems

Hf and Zr nitrides are promising compounds for many technologically important areas, including high-temperature structural applications, quantum computing, and solar and optical applications. Here, this article reports on a comprehensive first-principles statistical mechanics study of phase stability in the Hf-N and Zr-N binary systems. A high solubility of nitrogen in the hcp forms of Hf and Zr is predicted. The rocksalt forms of HfN and ZrN can also tolerate a high degree of off-stoichiometry through the introduction of nitrogen and metal vacancies. The Hf-N binary favors a family of stacking faulted parent crystal structures at intermediate nitrogen concentrations that host a unique form of short-range order among nitrogen interstitials and vacancies. These phases can accommodate some degree of configurational entropy and remain ordered to temperatures as high as 1200 K.

Monte Carlo methods

Flame retardant biogenic building insulation materials from hemp fiber

Biogenic thermal insulation materials are in high demand because of its carbon-sequestration nature. However, high flammability, moisture condensation, and relatively high thermal conductivity of biogenic material are major concerns for sustainable building applications. In this study, we report the fire-retardant cellulose xerogel insulation nanocomposites derived from hemp fiber recycling and silica xerogel, in which the boric acid treatment improves its fire retardancy. The as-prepared materials show a low thermal conductivity of 31.3 mW/m K, high flexural modulus of 665 MPa, hydrophobicity with the water contact angle of 115°, and fire retardancy with 30% weight loss over a period of burning time 10 min. Overall, this work provides an effective method for the synthesis of fire-retardant biogenic thermal insulation materials and shows a promising way for next-generation bio-based insulation materials.

36 MATERIALS SCIENCE

Thermally induced mimicry of quantum cluster excitations and implications for the magnetic transition in FePSe 3

In two dimensional magnets, the interplay of thermal fluctuations and spin anisotropy control the existence of long-range magnetic order. In the van der Waals antiferromagnets FePX 3 , orbital degeneracy in the 𝑡 2⁢𝑔 levels of the Fe 2+ ions in octahedral coordination yields strong uniaxial anisotropy, which stabilizes magnetic order up to 𝑇 ≈ 100 K. Recent inelastic neutron scattering measurements around the magnetic ordering transition have shown the existence of a broad spectrum of magnetic fluctuations with nontrivial momentum dependence, which has been interpreted as evidence for localized entangled cluster excitations. In this paper, we offer an alternative interpretation using classical nonlinear spin dynamics simulations. We present stochastic Landau Lifshitz dynamics simulations that reproduce the neutron scattering measurements of Chen et al. [npj Quantum Mater. 9, 40 (2024)] on FePSe 3 . These calculations faithfully explain the dynamical structure factor's momentum and energy dependence and point to a classical origin for the excitations observed in neutron spectroscopy and that the order-disorder transition can be understood in terms of thermal fluctuations overcoming the anisotropy energy.

Landau-Lifschitz-Gilbert equation

Study of Key 57 Ni ⁢(𝑝,𝛾)⁢ 58 Cu Resonances to Understand 44 Ti Nucleosynthesis in Supernovae

An important validation of nucleosynthesis models of core-collapse supernovae is the comparison of radioisotope predictions to abundances inferred from observations of 𝛾 rays emitted in remnants. One such isotope, 44 Ti, is especially sensitive to the 57 Ni ⁢(𝑝,𝛾)⁢ 58 Cu reaction rate. Despite this importance, no experimentally constrained rate exists for this reaction. It is thus crucial to determine this rate. GRETINA ORRUBA: Dual Detectors for Experimental Structure Studies (GODDESS) was used along with the first use of the Enge split-pole spectrograph at Notre Dame to measure structure properties of 58 Cu via the 58 Ni ⁢( 3 He,𝑡)⁢ 58 Cu reaction. Here, the combined analysis of these complementary data sets allows for precise determination of 58 Cu level energies, and spins are constrained from analysis of the 𝛾-ray decay. 44 Ti yields were found to change by over 25% compared to previous estimates in model calculations using the new experimentally constrained reaction rate.

energy levels