Engineering PapersSearch

SEARCH · Engineering Papers

Results for “planetary boundary layer”

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.

224 records · Page 11

Computational discovery of a tetragonal MBene phase: diamond-shaped boron lattices, viable MAB precursors, and selective CO 2 reduction

MBenes are a class of two-dimensional transition-metal borides derived from layered MAB phases. Here, we use first-principles calculations to predict a new tetragonal MB (1 : 1) MBene phase featuring a diamond-shaped B–B lattice and systematically assess its phase stability, synthetic accessibility, and catalytic performance towards the CO 2 reduction reaction (CO 2 RR). Four tetragonal configurations are benchmarked against known hexagonal and orthorhombic phases, and a multi-tier screening identifies six robust members (CrB, FeB, MoB, WB, IrB, and PtB). Exploration of the I4/mmm MAB space reveals 11 viable precursors, including the experimentally synthesized Ir 2 ZnB 2 , which validates our screening approach. CO 2 RR free-energy diagrams show that CrB favors CH 3 OH while FeB, MoB, WB, IrB, and PtB preferentially yield HCOOH. The corresponding limiting potentials are competitive with, and in some cases superior to, those reported for state-of-the-art orthorhombic and hexagonal MBenes. These findings expand the MBene landscape by establishing a tetragonal phase with structural, synthetic, and catalytic promise.

Lu, Linguo [University of Puerto Rico, San Juan, P

From Bricks to Clicks: Mapping the White Space in Building Innovation

It is a critical national imperative to transform the buildings sector, yet innovation is impeded by deployment failures that leave promising technologies stranded. Conventional market reports and techno-economic analysis provide an insufficient understanding of markets and resource allocation for emerging building technologies. They omit crucial commercialization factors such as ecosystem maturity and adoption friction, where the coordinated participation of a network of suppliers, contractors, financiers, regulators, and integrators is required to scale solutions. This study addresses these gaps by introducing an evaluation framework grounded in front-line data from six years of the DOE's IMPEL incubator, comprising experience from 300 building-sector innovators and the adjacent, complex ecosystem. Our methodology synthesizes top-down market analysis with bottom-up, practitioner-level data across five megatrends: (M1) Affordable materials and industrialized construction; (M2) Healthy and efficient mechanical systems; (M3) Intelligent building operations; (M4) Buildings as grid assets; and (M5) High-density power and cooling for data centers and therein identify twelve "white space" technology opportunities. Next, we develop a multi-criteria scoring rubric to rank these opportunities based on parameters, i.e., Affordability, Quality of Life, Reliability, and Security, yielding composite ‘Demand’ and ‘Maturity’ indices. Our results indicate that the most significant white spaces may not be incremental products but a new class of ‘Ecosystem Enablers’, such as logistics platforms, orchestration layers, and automated compliance software that solve structural deployment gaps. This paper summarizes this transparent, evidence-based, practitioner-informed evaluation framework for policymakers and investors to re-evaluate policy and resource allocation and unlock scalable market transformation.

Singh, Reshma

Graphitization of banana peel – synergistic effect of Ca and other elements of the biomass on carbon structure transformation

Recently, growing interest has been observed in using calcium as an effective catalyst for graphitizing disordered carbon materials derived from biomass and bioprecursors, such as cellulose and lignin, at relatively low tem peratures (<2000 °C). Herein, it is demonstrated that in the presence of elements such as calcium, silicon, sulfur, and potassium, which are abundant in banana peel composed of cellulose and lignin base, graphitization occurs much more effectively. The addition of external calcium source, in the form of calcium carbonate, to the banana peel-derived carbon and heat-treatment of the mixture under protective atmosphere up to 1750 °C results in a significant increase in the degree of the graphitization order and local formation of graphite crystals, whereas the same preparation and heat-treatment procedure applied to carbon material derived from pristine cellulose does not lead to such effective graphitization. It is indicated that the graphitization of banana peel carbon occurs due to the synergistic effect of the external Ca-based catalyst and the internal elements present in the raw biomass, supporting the transformation of the disordered graphene-like layers into graphitic structures. These findings are important for the future production of green graphite from biomass

09 BIOMASS FUELS

2,5‐Dimercapto‐1,3,4‐Thiadiazole (DMCT)‐Based Polymers for Rechargeable Metal–Sulfur Batteries

Organosulfur materials are a sustainable alternative to the present-day layered oxide cathodes in lithium-based batteries. One such organosulfur material that was intensely explored from the 1990s to early 2010s is 2,5-dimercapto-1,3,4-thiadiazole (DMCT). However, research interest declined as the electrode reactions with DMCT were assumed to be too sluggish to be practical. Armed with the advances in metal–sulfur batteries, we revisit DMCT-based materials in the form of poly[tetrathio-2,5-(1,3,4-thiadiazole)], referred to as pDMCT-S. With an appropriate choice of electrode design and electrolyte, pDMCT-S cathode paired with a Li-metal anode shows a capacity of 715 mA h g −1 and a Coulombic efficiency of 97.7% at a C/10 rate, thus quelling the concerns of sluggish reactions. Surprisingly, pDMCT-S shows significantly improved long-term cyclability compared to a sulfur cathode. Investigations into the origin of the stability reveals that the discharge product Li-DMCT in its mesomeric form can strongly bind to polysulfides, preventing their dissolution into the electrolyte and shuttling. This unique mechanism solves a critical problem faced by sulfur cathodes. Encouragingly, this mechanism results in a stable performance of pDMCT-S with Na-metal cells as well. In conclusion, this study opens the potential for exploring other organic materials that have inherent polysulfide sequestering capabilities, enabling long-life metal–sulfur batteries.

2,5-dimercapto-1,3,4-thiadiazole

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 (

Tailoring Ion Transport in Li 3‐3y Ho 1+y Cl 6‐x Br x via Transition‐Metal Free Structural Planes and Charge Carrier Distribution

Abstract Localized atomistic disorder in halide‐based solid electrolytes (SEs) can be leveraged to boost Li + mobility. In this study, Li + transport in structurally modified Li 3 HoCl 6 , via Br − introduction and Li + deficiency, is explored. The optimized Li 3‐3 y Ho 1+ y Cl 6‐ x Br x achieves an ionic conductivity of 3.8 mS cm −1 at 25 °C, the highest reported for holmium halide materials. 6,7 Li nuclear magnetic resonance and relaxometry investigations unveil enhanced ion dynamics with bromination, attaining a Li + motional rate neighboring 116 MHz. X‐ray diffraction analyses reveal mixed‐anion‐induced phase transitions with disproportionate octahedral expansions and distortions, creating Ho‐free planes with favorable energetics for Li + migration. Bond valence site energy analysis highlights preferred Li + transport pathways, particularly in structural planes devoid of Ho 3+ blocking effects. Molecular dynamics simulations corroborate enhanced Li + diffusion with Br − introduction into Li 3 HoCl 6 . Li‐Ho electrostatic repulsions in the (001) plane presumably drive Li + diffusion into the Ho‐free (002) layer, enabling rapid intraplanar Li + motion and exchange between the 2d and 4h sites. Li 3‐3 y Ho 1+ y Cl 6‐ x Br x also demonstrates good battery cycling stability. These findings offer valuable insights into the intricate correlations between structure and ion transport and will help guide the design of high‐performance fast ion conductors for all‐solid‐state batteries.

Chemistry

Impact of the Annealing Temperature on the Local Se Distribution and Optical Properties in CdSexTe1-x Solar Cells by Multimodal X-ray Microscopy

The introduction of Se in CdTe solar-cell absorbers has led to multiple beneficial effects in the devices, including an increased short-circuit current and an extended charge-carrier lifetime. A critical manufacturing step of CdSexTe1-x solar cells is CdCl2 annealing at high temperatures, during which Se diffuses through the absorber layer. Understanding the local Se distribution in the absorber and its impact on optical properties of the material is key for the further development of this thin-film solar cell technology. In a multimodal x-ray scanning microscopy approach, we investigated the impact of the annealing temperature of CdSexTe1-x solar cells on the Se distribution and on optical characteristics of the material. For this purpose, we exploited an upgraded x-ray excited optical luminescence (XEOL) detection unit that enables simultaneous spectrally and temporally resolved XEOL mapping at synchrotron facilities that are ideal for studying thin-film solar-cell materials with hard x-rays featuring high penetration depth and lateral resolution.

14 SOLAR ENERGY

Carbon in GaN as a nonradiative recombination center

Trap-assisted nonradiative recombination has been shown to limit the efficiency of optoelectronic devices. While substitutional carbon (⁠C N ) has been suggested to be a nonradiative recombination center in GaN devices, a complete recombination cycle including the two charge-state transition levels has not been previously described. In this work, we investigate the trap-assisted recombination process due to C N in GaN, including multiphonon emission, radiative recombination, trap-assisted Auger–Meitner (TAAM) recombination as well as thermal emission of holes. Our study shows the key role of TAAM processes at the high carrier densities relevant for devices. We also reveal the carrier-density regimes where thermal emission and radiative recombination are expected to play an observable role. Our results highlight that carbon concentrations exceeding ~10 17 cm −3 can have a noticeable impact on device efficiency, not just in GaN active layers but also in InGaN and AlGaN. Furthermore, our comprehensive formalism not only offers detailed results for carbon but also provides a general framework for assessing the multiple processes that participate in trap-assisted recombination in semiconductors.

36 MATERIALS SCIENCE

Sustainable Production of Biomass‐Derived Graphite and Graphene Conductive Inks from Biochar

Abstract Graphite is a commonly used raw material across many industries and the demand for high‐quality graphite has been increasing in recent years, especially as a primary component for lithium‐ion batteries. However, graphite production is currently limited by production shortages, uneven geographical distribution, and significant environmental impacts incurred from conventional processing. Here, an efficient method of synthesizing biomass‐derived graphite from biochar is presented as a sustainable alternative to natural and synthetic graphite. The resulting bio‐graphite equals or exceeds quantitative quality metrics of spheroidized natural graphite, achieving a RamanI D /I G ratio of 0.051 and crystallite size parallel to the graphene layers (L a ) of 2.08 µm. This bio‐graphite is directly applied as a raw input to liquid‐phase exfoliation of graphene for the scalable production of conductive inks. The spin‐coated films from the bio‐graphene ink exhibit the highest conductivity among all biomass‐derived graphene or carbon materials, reaching 3.58 ± 0.16 × 10 4 S m −1 . Life cycle assessment demonstrates that this bio‐graphite requires less fossil fuel and produces reduced greenhouse gas emissions compared to incumbent methods for natural, synthesized, and other bio‐derived graphitic materials. This work thus offers a sustainable, locally adaptable solution for producing state‐of‐the‐art graphite that is suitable for bio‐graphene and other high‐value products.

Chemistry

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

15.3% AM1.5G Efficiency GaAs Solar Cells Fabricated via an Epitaxy-Free Process

Here, we report simple and potentially low-cost techniques for creating high-quality n-type gallium arsenide (GaAs) and GaAs p/n junctions and fabricate GaAs p/n junction solar cells. Detailed-balance modeling suggests that 20% AM1.5G efficiency p/n homojunction devices may be possible if the surface doping concentration can be limited to values less than ∼ 5 × 10 19 cm −3 . Our process exploits an open-tube, vapor-phase, deposition-free, zinc diffusion technique for forming p-type layers in melt-grown n-GaAs substrates that results in sheet resistances less than 1 kΩ/$\square$. In addition, we have improved the minority carrier diffusion lengths of melt-grown GaAs from less than one micron to over five microns using an open-tube, vacuum-free, annealing process which reduces the density of EL2 midgap defects. Finally, we have combined these advances to fabricate epitaxy-free, GaAs solar cells with a validated AM1.5G efficiency of 15.3%.

14 SOLAR ENERGY

Effect of the Nature of Both Cation and Anion Substitution on the Structural Symmetry of Li‐Rich 3 d ‐Metal Chalcogenide Electrodes

Abstract Li‐rich layered chalcogenides have recently led to better understanding of the anionic redox process and its associated high capacity while providing ways to overcome its practical limitations of voltage fade and irreversibility. This study reports on the feasibility of triggering anionic activity in Li 2 TiS 3 , through anionic substitution (Se for S) or cationic substitution (Fe for Ti). Herein, the chalcogenide chemical space is further explored to prepare mono‐substituted Li 1.7 Ti 0.85 Mn 0.45 Ch 3 (Ch = S/Se) and doubly substituted cationic and anionic phases (Li 1.7 Ti 0.85 Fe 0.45 S 3‐z Se z ) which crystallize either in the O3‐ or O1‐type structures depending upon substituents. All series show a bell‐shape capacity variation as function of the transition metal (TM) substitution degree with values up to 240 mAh g −1 . For specific compositions, a structural O3 to O1 phase transition is observed upon Li removal, which is not reversible upon Li re‐insertion due to kinetic limitations and negatively affects long‐term cycling performance. Density functional theory (DFT) calculations confirm the O3/O1 relative stability along the different series and point subtle electronic differences in the TM‐doping, rationalizing the structural and electrochemical behaviors of these phases upon cycling. These findings provide further insights into the link between structural and electronic stability, which is of key importance for designing chalcogenide‐based anionic redox compounds.

Chemistry

Liquified SO 2 induced solid/cathode electrolyte interphase for lithium ion batteries

Formation of robust solid/cathode electrolyte interphases (S/CEI) is vital for long-term stability and high-performance operation of lithium-ion batteries (LIBs), particularly under high voltage regimes. However, engineering electrochemically stable S/CEIs that effectively suppress interfacial side reactions remains a key challenge. Herein, we introduce a liquefied sulfur dioxide (SO 2 )– ionic liquid complex as a fluorine-free multifunctional electrolyte additive for the first time that significantly improves the formation of sulfate/sulfite-rich S/CEI layers at both graphite and NMC811 interfaces. The unique SO 2 -N coordination with a 1,2,4-triazolide-based ionic liquid enables homogeneous SO 2 dissolution, resulting in controlled SO 2 decomposition during the initial electrochemical cycle. This decomposition yields sulfur-rich interphase species that stabilize the electrolyte-electrode interface, reduce impedance growth, and lessen electrolyte decomposition. Electrochemical tests show significantly improved cycle life, reduced polarization, and increased Coulombic efficiency for both anodes and cathodes. XPS confirms the presence of SO 2 -derived surface species that contribute to interfacial stability. In conclusion, this approach highlights a new direction for interphase engineering using liquefied gas additives and opens pathways for sulfur-based S/CEI chemistry in advanced battery systems.

Graphite

Biochar–polymer composites for 3D printing: a review

Biochar, a bio-based co-product of biofuel production via thermochemical conversion, holds potential as a filler for polymer composites to reduce costs, improve thermomechanical properties, and aid in environmental remediation. 3D-printed biochar composites have received growing interest over the past few years but have experienced difficulties such as poor layer adhesion and nozzle clogging. Currently, no literature review examines 3D-printed biochar composites and related biochar properties in-depth. This work summarizes and discusses recent studies on 3D-printed polymer and biochar composites and examines their mechanical, thermal, and additional properties that result from each study. Technical challenges in printability, such as nozzle clogging from particle size and biochar aggregation, are also discussed. Furthermore, this work discusses the variability of biochar properties resulting from the pyrolysis conditions and feedstock choice in relation to potential 3D printing outcomes. In particular, several studies reported that high lignin feedstocks could be candidates for 3D printing. The post-processing approaches of the biochar via physical and chemical methods are also introduced. Ball milling appears to hold the most promise for physical treatments due to its tunability of particle size, surface area, and functional groups, while chemical treatments with acids or alkalis are used to tailor biochar porosity and wettability. Overall, it was determined that future research needs to be done relating biochar production and post-processing methods to resulting 3D printing parameters as the number of studies is limited.

Day, Rachel [Auburn University, Auburn, AL]

First Wall Design of a Tokamak Pilot Plant Using a Monte Carlo Model for 3-D Heat Flux Deposition

We present a method for calculating the heat fluxes deposited on nonaxisymmetric tokamak first wall components, allowing for a first-of-its-kind model for power handling in the tokamak far scrape-off layer (SOL). The DIV3D Monte Carlo model features strict global power conservation and can calculate the finite cross-field plasma transport into magnetically-shadowed regions, which is significant when dealing with meter-scale shadows introduced by components such as poloidal limiters or antennas. As a case study, we apply the DIV3D model to inform the distribution of first wall poloidal limiters in an ARC-class reactor device. We demonstrate that discrete protection limiters can efficiently reduce peak heat fluxes on recessed breeder wall components in the presence of significant far-SOL plasma fluxes. By varying the toroidal periodicity and radial standoff depth of the limiters, we demonstrate one of the tradeoffs that must be considered in first wall design: more limiters provide greater protection, but at the cost of reduced breeding performance. We also present the impact that radial misalignments between limiters would have on first wall power loading.

Monte Carlo methods

Low thermal budget dopant activation in shallow junctions of implanted Si via Tunable plasma enhanced annealing

Low thermal budget (LTB) annealing has become increasingly critical for shallow junctions as semiconductor devices are scaled down. Plasma Enhanced Annealing (PEA) has emerged as a promising LTB annealing process, however its mechanisms remain unclear. In this study, arsenic and boron implanted silicon wafers were subjected to helium or argon ion bombardment generated by annealing plasmas under controlled ion energies and doses in a home-built annealing reactor. The structural and electrical changes were characterized by four-point probe measurements, secondary ion mass spectrometry, Raman spectroscopy and spectroscopic ellipsometry. A pronounced reduction in sheet resistance, accompanied by a decrease in the damage layer thickness demonstrates the surface selective annealing capability of PEA process. Comparative studies using He and Ar plasmas and related ion bombardment reveal a dependence of activation efficacy on both ion species and the dopant implantation profile. Furthermore, a multi-step annealing mechanism is proposed, consisting of an initial (low dose) structural recovery stage followed by the generation of “extended” defects and concluded at large doses by an enhanced dopant activation. The proposed annealing kinetics are thought to be controlled by ion flux, dose and energy. Finally, these results highlight PEA as an effective, surface-selective, LTB approach for shallow-dopant activation and near surface annealing, and provide mechanistic insights into PEA processes.

dopant activation

Influence of microstructure and temperature on impact toughness of H13 steel produced by binder jet additive manufacturing

Binder Jet Additive Manufacturing (BJAM) is a promising manufacturing pathway to produce H13 steel dies and tooling with complex geometries for applications in high pressure aluminum die casting, hot stamping, and injection molding. While fully dense H13 coupons produced using BJAM have been subjected to detailed microstructure characterization, properties which are critical and relevant to the aforementioned applications, such as impact toughness, have not been reported. Here, this work evaluated the influence of microstructural characteristics and test temperature on the impact toughness of H13 produced by BJAM. Coupons were produced from three different powder size distributions (PSDs), with nominal powder size ranges of −22 μm, 10-32 μm, and 15-53 μm. Coupons were printed, sintered, hot isostatically pressed (HIPed), and heat treated by quenching and tempering. After HIPing, the measured porosities of the different PSDs were all less than 0.015 vol%. The −22 μm PSD BJAM material exhibited the best impact toughness of all three PSDs across the entire test temperature range from 25 to 400 °C, and also exhibited an ambient temperature impact toughness of 10.9 J at a hardness of 46 HRC, equivalent to minimum threshold requirements for premium grade H13. However, all three BJAM PSDs exhibited moderately lower impact toughness than premium grade wrought H13 from RT to 400 °C. We attribute this in part due to the very large prior-austenite grain (PAG) sizes near 400 μm and segregation from former liquid channels leading to greater amounts of carbide precipitation on PAG boundaries. Technical pathways for optimizing processing and chemistry of BJAM H13 to further improve impact toughness are discussed.

Binder jet additive manufacturing

Pinning ångström-size solid ionic channels for rare-earth element separation

High-purity rare-earth elements are essential for modern technologies, yet current solvent extraction processes are energy-intensive and environmentally harmful because of inadequate selectivity and ligand toxicity. Although combining size exclusion and binding affinity can improve lanthanide separation, the role of long-range confinement remains underexplored. Here we report lanthanide separation in aqueous systems using extremely confined manganese oxide solid ionic channels with optimized layer spacing. Different lanthanides induce distinct solid-state phase transformations in manganese oxide, creating a strong driving force for separation. Two lanthanide groups, differing by ~1.4 Å in spacing, were identified and confirmed to be stable by density functional theory. The narrower confinement of heavier Group II lanthanides improves cross-group separation by increasing the dehydration barrier for lighter Group I lanthanides without inducing strong binding. Here, we further developed a strategy to pin the confinement dimensions and enhance same-group separation, increasing enrichment factors for La–Nd and La–Pr pairs from 1.6 ± 0.1 and 1.5 ± 0.1 to 5.4 ± 0.1 and 4.2 ± 0.1, respectively.

Chemical engineering