Search NASASearch

SEARCH · Search NASA

Results for “NESDPS Office of Nuclear Energy Space and Defense Power Systems”

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,786 records · Page 82

High-Temperature SiC Cladding End Plug Irradiation Design and HFIR Readiness

This report documents the design of a High Flux Isotope Reactor (HFIR) irradiation experiment intended to evaluate irradiation effects on the hermeticity of silicon carbide (SiC) end plug specimens under a radial fast neutron flux gradient at representative light-water reactor (LWR) temperatures of approximately 300 °C. The overarching goal of this work is to statistically evaluate SiC end plug hermeticity and mechanical properties following irradiation using the high-throughput irradiation capability discussed here. Each specimen consists of a short section of SiC fiber–reinforced SiC (SiC/SiC) tube with a single monolithic SiC end plug joined to one end. The experiment allows up to 66 specimens to be irradiated in six different stacks within a dry, sealed irradiation capsule derived from the previously developed high-temperature SiC/SiC cladding bowing experiment. The neutronics basis, thermal analysis, and HFIR readiness of the experiment are discussed in this report for two possible design cases. The first design case is based on existing approval documentation and components that are on hand and approved for use, so the experiment insertion would require only specimen receipt, specimen pre-irradiation characterization, experiment assembly, and final fabrication package approval. The second design case provides improved thermal robustness and the preferred end plug geometry but requires fabrication of a modified holder and revisions to the HFIR approval documentation, in addition to the other activities required for the first design case, before insertion.

Hott, Daniel [Oak Ridge National Laboratory (ORNL)

Boron Nitride-Driven Strengthening of Aluminum Composites via Friction Stir Processing

Friction stir welding and processing (FSW/P) has emerged as an effective solid-state joining technique for fabricating metal matrix composites (MMCs), offering improved mechanical properties through refined microstructural evolution. In this study, an aluminum-boron nitride nanoparticle (Al-BNNP) composite was synthesized via FSW, and its indentation-based mechanical properties were systematically evaluated. Microhardness mapping across the weld cross-section revealed a progressive increase in hardness toward the stir zone (SZ), attributed to severe plastic deformation, dynamic recrystallization (DRX), and the reinforcing effect of BNNPs. Profilometry-based indentation plastometry (PIP) inferred yield strength (YS) demonstrates a 47.8% increase compared to the base metal (BM) and a 75% improvement compared to FSP pure aluminum reported in literature. This enhancement is attributed to strengthening mechanisms, including grain boundary pinning, load transfer, and increased dislocation density. The strain rate sensitivity (SRS) measurements at the nanoscale demonstrated a substantial decrease in the SZ, correlated with ultrafine grain structures and strong BNNP-matrix interactions. Activation volume analysis revealed a significant reduction in the SZ, suggesting that dislocation motion is increasingly restricted by dislocation-dislocation and dislocation-particle interactions. These findings suggest that incorporating BNNPs in FSW/P enables tailoring the microstructure without thermal degradation of the secondary particles, thereby significantly enhancing the mechanical performance of aluminum composites, particularly for structural applications in aerospace and automotive industries.

Aluminum

Electric spiking activity in epithelial cells

Epithelial cells (human keratinocyte cells and the canine MDCK cell line), traditionally viewed as electrically non-self-excitable and involved primarily in physiological functions such as barrier presentation, absorption, secretion, and protection, are shown here to exhibit traveling extracellular electric charge when they recover from spatially focused, laser-induced wounding of confluent monolayers cultured on a multielectrode array chip. Voltage spikes measured on these electrodes display depolarization, repolarization, and hyperpolarization phases with amplitudes similar to the action potentials of neurons but with the markedly slower duration of 1 to 2 s. Some propagate distances up to hundreds of μm from the wound with a mean speed of around 10 mm s −1 . Generation and transmission of bioelectric signals are significantly influenced by the perturbation of mechanosensitive cationic ion channels. These direct measurements confirm bioelectric signaling that previous work has hypothesized to regulate epithelial cell development and may have relevance to the frequency parameter selection of bioelectric devices.

Science & Technology - Other Topics

Insights into the thermo-hydraulic properties of compacted MX80 bentonite during hydration under elevated temperature

In high-level radioactive waste geological repositories, compacted bentonite undergoes coupled thermo-hydraulic processes due to heat released from a central waste canister and groundwater imbibition from the surrounding host rock. An understanding of these processes is essential for long-term simulations of radionuclide migration and canister corrosion, which requires an understanding of temperature effects on the coupled thermo-hydraulic properties governing these processes. In this study, a tank-scale radial infiltration test was used to investigate water imbibition processes in compacted bentonite under a central heater temperature of 200 °C that simulates high thermal gradients in a repository. Interpretation of this test focuses on evaluation of the liquid water wetting front during hydration and the interpretation of the temperature-dependent transient soil water retention curve (SWRC), thermal conductivity function (TCF), and hydraulic conductivity function (HCF). The SWRC during imbibition follows a temperature-dependent wetting path. Temperature effects on the hydraulic conductivity of bentonite in saturated conditions had the greatest effect on the shape of the HCF, with minimal temperature effects at higher suctions. The transient thermal conductivity data matched well with a new TCF linked with the SWRC shape. Although the bentonite layer was restrained, local deformations during hydration may have affected the shapes of the TCF and HCF.

Engineering

High-Q superconducting lumped-element resonators for low-mass axion searches

Low-frequency superconducting lumped-element resonators have recently attracted significant attention in the context of axion dark matter searches. Here, we present the design and implementation of a fixed-frequency superconducting resonator operating near 250 kHz, possessing an inductor volume of ∼1 liter and achieving an unloaded quality factor Q ≈ 2.1 × 10 6 . This resonator represents a significant improvement over the state of the art and informs the design of searches for low-mass axions.

Bosons

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 (

Scan‐Path‐ and Initial‐State‐Dependent Superdomain Switching in (111)‐Oriented PZT

Polarization switching in ferroelectric materials arises from the collective evolution of complex domain hierarchies, yet deterministic control over these processes remains challenging. Here, we investigate scan-path- and initial-state-dependent switching in epitaxial (111)-oriented PbZr 0.2 Ti 0.8 O 3 thin films using automated AFM-based writing combined with quantitative 3D piezoresponse force microscopy. We show that the scan trajectory acts as an experimentally accessible control parameter for superdomain formation. Box-in-box raster scans reproducibly stabilize ordered stripe superdomains with a reduced subset of symmetry-allowed variants, whereas spiral trajectories generate frustrated mixed-variant states with a broader distribution of final microstructures. Automated pulsing experiments further show that the local superdomain configuration at the nucleation site strongly influences the final written morphology. Phase-field modeling qualitatively reproduces the contrast between representative initial-state geometries and supports the role of compatibility constraints among competing ferroelastic pathways. These findings establish scan-path and initial-state engineering as practical handles to program ferroic order in hierarchical ferroelectric domain structures.

Vasudevan, Rama K. [Oak Ridge National Laboratory

Progress Report on SFR Metallic Fuel Data Qualification

This report summarizes the progress of SFR metallic fuel qualification related activities, which are focused on providing quality assurance relevant information applicable to experiments irradiated during the Integral Fast Reactor (IFR) program. An overview of the metallic fuel performance data and the associated databases, including the EBR-II Fuels Irradiation & Physics Database (FIPD), Out-of-Pile Transient Database (OPTD), and TREAT Experimental Relational Database (TREXR) is included. The legacy data in the databases, including as-built, post-irradiation examination (PIE), operating parameters, and out-of-pile experiment post-test data are introduced. The SFR metallic fuel Quality Assurance Program Plan (QAPP) and its implementation to qualify these legacy data is described in detail. Important PIE data QA documents and the specifications of seven types of PIE measurements (contact profilometry, laser profilometry, neutron radiography, gamma scan, fission gas release fission gas chemistry, and metallography) are provided. Examples of the implementation of the QAPP to qualify each of those types of PIE data are provided.

Mo, Kun [Argonne National Laboratory (ANL), Argonn

Magnetic brightening and nanoscale imaging of spin-polarized helical edge modes in ZrTe 5

Efficient charge transport remains a fundamental challenge for nanoelectronic devices, as their performance is constrained by high dissipation and the impedance mismatch between high-frequency signal sources and nanoscale circuit interfaces. Although topologically protected helical edge modes offer a dissipationless and backscattering-resilient alternative, achieving nanoscale control over these modes requires direct visualization of their spatial electrodynamics, especially under high-frequency operation. Here, by utilizing cryogenic magneto-infrared scattering-type scanning near-field optical microscopy (cm-IR-sSNOM), we image spin-polarized helical edge channels in ZrTe 5 at the nanoscale, revealing magnetic-field-induced brightening as a high-frequency electrodynamic signature of robust topological edge modes. Operating at 1.8 K and under a magnetic field of up to 5 T, we observe the emergence of edge-state polarizability at infrared frequencies that is notably resilient to the magnetic gaps that typically quench d.c. and microwave edge transport. Our results reveal a topological ‘two-lane’ spatial reorganization in which an external magnetic field induces a spin-population imbalance between counterpropagating edge modes. Favoured helical branches are confined against physical boundaries to activate a net infrared near-field contrast. This electrodynamic response scales linearly with the number of atomic layers, which confirms that individual layers in ZrTe 5 preserve their discrete quantum spin Hall identities. These findings may be useful for developing topological spintronic devices, as the magnetic infrared tunability of helical edge channels provides a pathway for low-loss nanoscale interconnects and high-speed information processing.

36 MATERIALS SCIENCE

Intrinsic even-odd thickness-driven anomalous Hall effect in epitaxial MnBi2⁢Te4 thin films

We demonstrate precise control of magnetism in MnBi2⁢Te4 thin films through careful synthesis by molecular beam epitaxy, achieving minimal defects and accurate layer thickness control. By optimizing Mn-Bi-Te ratios and growth temperatures, we minimize detrimental self-doping effects and accurately target integer-layer films. X-ray diffraction and reflectivity provide quantitative measures of film quality and thickness. When these macroscale probes of structure and thickness are integrated with magnetotransport measurements, a striking even-odd layer dependence of the anomalous Hall effect is revealed. Odd-layer films exhibit a large hysteresis up to the Néel temperature (∼25K), consistent with noncompensated antiferromagnetism, while even-layer films show minimal response, as expected for an antiferromagnet. The sign of the anomalous Hall effect exhibits a sign reversal for intrinsic magnetism versus magnetism associated with defects. This work identifies critical factors for inducing pure, noncompensated ferromagnetism and reveals the characteristics of the intrinsic anomalous Hall effect in MnBi2⁢Te4, which together is a step toward realizing the zero-field quantum anomalous Hall effect in topological materials.

Mallick, Deb [ORNL] (ORCID:000900005806411X)

Fire Protection Design

The purpose of this project is to design the demolition and installation of a deluge valve swap from a DV-5 to a DV-5A valve.

99 GENERAL AND MISCELLANEOUS

Scalable slot-die coating of phyllosilicate membranes for selective ion separations

Abstract Two-dimensional (2D) materials have recently drawn attention as candidate materials for molecular-scale membrane separations due to their tunable nanoscale interlayer properties. Phyllosilicates, a broad class of naturally abundant 2D clay minerals, offer significant advantages over synthetic 2D materials, including low cost, stability, and environmental compatibility. While these properties make phyllosilicates attractive for industrial-scale nanofiltration applications, phyllosilicate-based membranes have, to date, only been fabricated at the lab scale via vacuum filtration. Scalable fabrication methods are essential to advance the technical maturity of phyllosilicate membranes and bring these promising materials closer to large-scale adoption. Herein, we have successfully scaled up phyllosilicate (vermiculite) membrane fabrication via slot-die coating and roll-to-roll coating of an ethylenediamine–vermiculite (EDAVM) mixture onto nylon. The coated membranes are 1–2 μm $ \unicode{x03BC} \mathrm{m} $ mu m in thickness and exhibit similar structure and performance to vacuum-filtered EDAVM membranes. The membranes also show selectivity for monovalent ions over multivalent ions in binary salt mixtures. This work represents a major step toward scaling up phyllosilicate membranes for industrial ion separation applications such as resource recovery from water.

Booth, Austin [Princeton University]

Classical-Quantum Algorithm for Solving Stochastic Programs

Stochastic programming provides a rigorous mathematical framework for making decisions under uncertainty in a risk-aware manner. Two-stage stochastic programming is, perhaps, the simplest form of this framework. Here the first-stage variables represent decisions that must be made "here and now" in the face of uncertainty, while the second-stage variables are decisions made after uncertain events. However, the broad adoption of stochastic programming has been hindered by computational challenges caused by the two-stage stochastic programming formulation which requires solving an ensemble of optimization problems. Using quantum amplitude estimation (QAE), quantum computers have shown the theoretic ability to compute expectations with Monte-Carlo methods with quadratically fewer samples than classical methods. In this work, we present a quantum algorithm for computing the expectation term using QAE for given first-stage decisions. Further, we detail methods of computing gradient information from the quantum calculation enabling the application of classical gradient-based optimization techniques. The result is a classical-quantum hybrid method of solving two-stage stochastic programs. These techniques are demonstrated with computational experiments based an engineering optimization problem.

97 MATHEMATICS AND COMPUTING

Monitoring Depolymerization in Mesopores Using Dynamic Properties of Polymeric Melt Accessed via Dielectric Spectroscopy

Traditional design principles for heterogeneous catalysis guide the use of catalytic particles with mesosized (∼2–50 nm) pores to increase the number of surface-active sites by way of an increased surface area. However, the entry of long-chain polymers into such pores may be significantly limited by the size and entanglement of polymers in the melt state, thereby decreasing the number of accessible sites. Assessment of catalyst performance from traditional reactor-based studies averages over intrapore reaction events as well as reactions on the surface of a particle, resulting in an inability to distinguish between differences in site accessibility and activity. Techniques that assess the intrapore performance can inform the design of future heterogeneous catalysts for polymer upcycling. In this work, we demonstrate the use of broadband dielectric spectroscopy to monitor depolymerization of a polymer melt within mesopores via changes in the segmental relaxation time scale of amorphous polymer chains. In particular, we highlight the use of an anodic aluminum oxide (AAO) membrane as a readily available model for catalyst pores with a well-characterized pore morphology. The decrease in the segmental relaxation (α-relaxation) time of the melt with increasing chain scission emerges as a measure of the extent of polymer deconstruction inside mesopores. To demonstrate the utility of this technique, we demonstrate the decomposition of two commercial poly(propylene carbonate) polymers with different decomposition rates within mesopores. As the polymers depolymerize, their segmental relaxation time decreases as the molecular weight decreases (as predicted by the Fox–Flory equation). The BDS-measured change in segmental relaxation time mirrors the expected trend based on change in molecular weight measured by size exclusion chromatography.

37 INORGANIC, ORGANIC, PHYSICAL, AND ANALYTICAL CH

MHONGOOSE: A MeerKAT nearby galaxy H I survey

The MHONGOOSE (MeerKAT H IObservations of Nearby Galactic Objects: Observing Southern Emitters) survey maps the distribution and kinematics of the neutral atomic hydrogen (H I) gas in and around 30 nearby star-forming spiral and dwarf galaxies to extremely low H Icolumn densities. The H Icolumn density sensitivity (3σover 16 km s −1 ) ranges from ∼5 × 10 17 cm −2 at 90″ resolution to ∼4 × 10 19 cm −2 at the highest resolution of 7″. The H Imass sensitivity (3σover 50 km s −1 ) is ∼5.5 × 10 5 M ⊙ at a distance of 10 Mpc (the median distance of the sample galaxies). The velocity resolution of the data is 1.4 km s −1 . One of the main science goals of the survey is the detection of cold accreting gas in the outskirts of the sample galaxies. The sample was selected to cover a range in H Imasses from 10 7 M ⊙ to almost 10 11 M ⊙ in order to optimally sample possible accretion scenarios and environments. The distance to the sample galaxies ranges from 3 to 23 Mpc. In this paper, we present the sample selection, survey design, and observation and reduction procedures. We compared the integrated H Ifluxes based on the MeerKAT data with those derived from single-dish measurement and find good agreement, indicating that our MeerKAT observations are recovering all flux. We present H Imoment maps of the entire sample based on the first ten percent of the survey data, and find that a comparison of the zeroth- and second-moment values shows a clear separation in the physical properties of the H Ibetween areas with star formation and areas without related to the formation of a cold neutral medium. Finally, we give an overview of the H I-detected companion and satellite galaxies in the 30 fields, five of which have not previously been cataloged. We find a clear relation between the number of companion galaxies and the mass of the main target galaxy.

Astronomy & Astrophysics

Recrystallization, cracking, and erosion of dispersoid-strengthened tungsten materials during exposure to divertor plasmas

In this study, we investigated the effects of combined intense particle and heat flux exposure on advanced tungsten plasma-facing materials within the DIII-D fusion facility. Our test matrix included two types of dispersoid-strengthened tungsten (containing either 100 nm diameter TiO 2 or Ni particles), along with high-purity polycrystalline tungsten as a reference. This experiment relied on a sample geometry angled at 15° relative to the divertor surface, thereby allowing the surfaces to intercept steady-state perpendicular heat fluxes (q ⟂ ) ranging from 10.1 to 19.6 MW/m 2 . During each shot, the samples were exposed to 42 Hz edge-localized modes (ELMs), allowing us to test the material response to transient heating. We correlated the exposure conditions with extensive post-test surface composition analysis and microscopy to determine how the plasma modified each surface. The angled specimens closest to the strike point received the highest combined heat and particle flux and melted midway through the experiment. EBSD analysis revealed they were completely recrystallized throughout, with an average grain size >100 µm. On the other hand, the specimens that received a lower steady state heat flux survived with more superficial surface damage. Whereas the high-purity polycrystalline tungsten exhibited a higher surface roughness, the dispersoid-strengthened material exhibited more extensive shallow inter-granular cracking. In addition, the surface was depleted of dispersoids following plasma exposure, possibly because of evaporation and/or sputtering. The results described here provide insights into the performance of these materials in a fusion environment which can guide further optimization for use in long-pulse devices.

Kolasinski, Robert D. [Sandia National Laboratorie

Nine lensed quasars and quasar pairs discovered through spatially extended variability in Pan-STARRS

We present the proof of concept of a method for finding strongly lensed quasars using their spatially extended photometric variability through difference imaging in cadenced imaging survey data. We applied the method to Pan-STARRS, starting with an initial selection of 14 107Gaiamultiplets with quasar-like infrared colours from WISE. We identified 229 candidates showing notable spatially extended variability during the Pan-STARRS survey period. These include 20 known lenses and an additional 12 promising candidates for which we obtained long-slit spectroscopy follow-up. This process resulted in the confirmation of four doubly lensed quasars, four unclassified quasar pairs, and one projected quasar pair. Only three are pairs of stars or quasar+star projections. The false-positive rate accordingly is 25%. The lens separations are between 0.81″ and 1.24″, and the source redshifts lie betweenz = 1.47 andz = 2.46. Three of the unclassified quasar pairs are promising dual-quasar candidates with separations ranging from 6.6 to 9.3 kpc. We expect that this technique is a particularly efficient way to select lensed variables in the upcomingRubin-LSST, which will be crucial given the expected limitations for spectroscopic follow-up.

Astronomy & Astrophysics