Search NASASearch

SEARCH · Search NASA

Results for “CONCURRENT”

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.

At least 55 records · Page 3

T-FSM: A Scalable Distributed Task-Based System for Frequent Subgraph Pattern Mining from a Big Graph

Finding frequent subgraph patterns in a big graph is an important problem with many applications such as classifying chemical compounds and building indexes to speed up graph queries. Since this problem is NP-hard, some recent parallel and distributed systems have been developed to accelerate the mining. However, they often have a huge memory cost, very long running time, suboptimal load balancing, poor scale-out capability, and possibly inaccurate results. In this article, we propose an efficient system called T-FSM for parallel mining of frequent subgraph patterns in a big graph. T-FSM supports a new anti-monotonic frequentness measure called Fraction-Score, which is more accurate than the widely used MNI measure. The execution engine of T-FSM supports both intra-machine parallelism and inter-machine parallelism. For intra-machine parallelism, T-FSM adopts a novel task-based execution model to ensure high multithreading concurrency, bounded memory consumption, and effective load balancing. For inter-machine parallelism, T-FSM ensures good scale-out performance with a lightweight pattern rebalancing approach that reduces workload skewness of pattern evaluations among machines. To avoid recomputing the contexts for migrated patterns, we design a novel context cache table to support concurrent and asynchronous requesting and caching of remote context data, which can timely evict and garbage collect used pattern contexts that are no longer needed to keep memory consumption bounded. Extensive experiments show that T-FSM is orders of magnitude faster than existing state-of-the-art parallel systems (more than 10×, 51×, 131×, 55× speedup over ScaleMine, DistGraph, Pangolin and Peregrine, respectively) and distributed systems (more than 42× and 88× over ScaleMine and DistGraph, respectively) for frequent subgraph pattern mining, and it scales out satisfactorily to 512 CPU cores on the Polaris supercomputer at Argonne National Laboratory.

97 MATHEMATICS AND COMPUTING

Synthesis of Correct Digital Controller Models from Specifications by Model Transformation (21-0320)

The design of high consequence controllers (in weapons systems, autonomy, etc.) that do what they are supposed to do is a significant challenge. Testing simply does not come close to meeting the requirements for assurance. Today circuit designers at Sandia (and elsewhere) typically capture the core behavior of their components using state models in tools such as STATEFLOW. They then check that their models meet certain requirements (e.g. “The system bus must not deadlock” or “both traffic lights at an intersection must not be green at the same time”) using tools called model checkers. If the model checker returns “yes” then the property is guaranteed to be satisfied by the model. However, there are several drawbacks to this industry practice: (1) there is a lot of detail to get right, this is particularly challenging when there are multiple components requiring complex coordination (2) any errors returned by the model checker have to be traced back through the design and fixed, necessitating rework, (3) there are severe scalability problems with this approach, particularly when dealing with concurrency. All this places high demands on the designers who now face not only an accelerated schedule but also controllers of increasing complexity. This report describes a new and fundamentally different approach to the construction of safety-critical digital controllers. Instead of directly constructing a complete model and then trying to verify it, the designer can start with an initial abstract (think “sketch”) model plus the requirements, from which a correct concrete model is automatically synthesized. There is no need for post-hoc verification of required functional properties. Having tool to carry this out will significantly impact the nation’s ability to ensure the safety of high-consequence digital systems. The approach has been implemented in a prototype tool, along with a suite of examples, including ones that reflect actual problems faced by designers. Our approach operates on a variant of Statecharts developed at Sandia called Qspecs. Statecharts are a widely used formalism for developing concurrent reactive systems, supporting scalability through allowing state models containing composite states, which are the serial or parallel composition of substates which can themselves contain statecharts. Statecharts enable an incremental style of development, in which states are progressively refined to incorporate greater detail in an incremental model of software development. Our approach formulates a set of constraints from the structure of the models and the requirements and propagates these constraints to a fixpoint. The solution to the constraints is an inductive invariant along with guards on the transitions. We also show how our approach extends to implementation refinement, decomposition, composition, and elaboration. We currently handle safety requirements written in LTL (Linear Temporal Logic)

42 ENGINEERING

Data-flow parallelism for high-energy and nuclear physics computing frameworks

The processing tasks of a scientific workflow in high-energy and nuclear physics (HENP) can typically be represented as a directed acyclic graph formed according to the data flow—i.e. the data dependencies among algorithms executed as part of the workflow. With this representation, an HENP computing framework can optimally execute a workflow, exploiting the parallelism inherent among independent tasks. Despite such a natural description of a workflow, most HENP frameworks do not make use of technologies that provide concurrent execution of graph-based tasking structures. In this session, we describe Fermilab efforts to adopt a graph-based technology (specifically Intel’s oneTBB flow graph) for meeting the framework needs of its experiments, notably DUNE. After introducing the physics DUNE intends to explore, we will show that all common processing idioms supported by current HENP frameworks can naturally be supported by oneTBB’s data-flow technology, optimally leveraging the concurrent capabilities of the machine. In addition, we discuss collaborative efforts between Fermilab and the Intel oneTBB development team, who is considering improvements to the flow-graph technology to better support HENP use cases.

43 PARTICLE ACCELERATORS

A Managed Tokens Service for Securely Keeping and Distributing Grid Tokens

Fermilab is transitioning authentication and authorization for grid operations to using bearer tokens based on the WLCG Common JWT (JSON Web Token) Profile. One of the functionalities that Fermilab experimenters rely on is the ability to automate batch job submission, which in turn depends on the ability to securely refresh and distribute the necessary credentials to experiment job submit points. Thus, with the transition to using tokens for grid operations, we needed to create a service that would obtain, refresh, and distribute tokens for experimenters’ use. This service would avoid the need for experimenters to be experts in obtaining their own tokens and would better protect the most sensitive long-lived credentials. Further, the service needed to be widely scalable, as we are currently keeping credentials active for approximately 15 experiments, each with 1-3 different credentials, and distributing those credentials to 2-20 submit points per experiment, with those numbers steadily increasing. To address these issues, we created and deployed a Managed Tokens service. The service is written in Go, taking advantage of that language’s native concurrency primitives to easily be able to scale operations as we onboard experiments. The service uses as its first credentials a set of kerberos keytabs, stored on the same secure machine that the Managed Tokens service runs on. These kerberos credentials allow the service to use htgettoken via condor_vault_storer to store vault tokens in the HTCondor credential managers (credds) that run on the batch system scheduler machines (HTCondor schedds); as well as downloading a local, shorter-lived copy of the vault token. The kerberos credentials are then also used to distribute copies of the locally-stored vault tokens to experiment submit points. When experimenters schedule jobs to be submitted, these distributed vault tokens are used to access a Hashicorp Vault instance (run separately from the Managed Tokens service), and previously-stored refresh tokens there are used to obtain the bearer token that is submitted with the job. We will discuss here the design of the Managed Tokens service, including elaborating on certain choices we made with regards to concurrent operations, configuration, monitoring, and deployment.

Bhat, Shreyas

Data-flow parallelism for high-energy and nuclear physics frameworks

The processing tasks of an event-processing workflow in high-energy and nuclear physics (HENP) can typically be represented as a directed acyclic graph formed according to the data flow—i.e. the data dependencies among algorithms executed as part of the workflow. With this representation, an HENP framework can optimally execute a workflow, exploiting the parallelism inherent among independent tasks. Despite such a natural description of a workflow, most HENP frameworks do not make use of technologies that provide concurrent execution of graph-based tasking structures. In this talk, we describe Fermilab efforts to adopt a graph-based technology (specifically Intel’s oneTBB flow graph) for meeting the framework needs of its experiments, notably DUNE. Building on the Meld project as presented at CHEP2023, we demonstrate that all common processing idioms supported by current frameworks can naturally be supported by oneTBB’s data-flow technology, optimally leveraging the concurrent capabilities of the machine. In addition, we discuss collaborative efforts between Fermilab and the Intel oneTBB development team, who is considering improvements to the flow-graph technology to better support HENP use cases.

72 PHYSICS OF ELEMENTARY PARTICLES AND FIELDS

Microchannel-based Membrane-less Extraction of Li from Unconventional Lithium Sources & the Separation of REE

This final report provides an overview of the Project's entire duration, covering July 1, 2021 to December 31, 2023. It primarily focuses on the achievements, technological developments, and unique challenges the team faced while working on separating and extracting Lithium from produced waters. The project's primary aim was to create an integrated, high-throughput, membrane-less, and modular microfluidic platform that could extract Lithium from unconventional sources. We have successfully met all goals and milestones envisioned in the SOPO document. The most critical primary milestones, including the Go-No-Go milestone (refer to the Gantt chart in the Appendices), were successfully accomplished. We demonstrated phase separation (>90%) and extraction (>85%) performance in the MPSE using synthetic, and representative produced water composition feed at 50 ml/min total flow through MPSE 36. We have also performed a parametric study of the MPSE operations, beyond the scope of SOPO, exploring operating conditions of current and broader interest. The extended investigation of operational parameters is concurrent with our efforts to seek further development of the MPSE technology beyond the scope of the Project. Along these lines of development, we have made efforts to be responsive to DOE calls for technological developments of other types of resources (beyond PW) for the recovery of Critical Materials and higher TRL development (beyond TRL 4). During the work on this Project, we developed and implemented three innovative technical approaches that emerged from our efforts to successfully meet the Project milestones. The innovative & original technical approaches developed and implemented in this Project are now the contributions to process engineering that could be clearly credited to the Project. First, Convergent Design Approach is a comprehensive feedforward & feedback loop of four design phases: i) design for functionality, ii) design for manufacturing, iii) design for sustainability, and iv) design for market. Next was Process Intensification. A major aim of this Project was to create an innovative phase separation & extraction microscale-based technology for Li separation – thus the words microchannel-based in the Project title. A microscale-based technology is intrinsically in the center of the Process Intensification domain as defined by its unique principles. Therefore, Process Intensification was implicitly envisioned in the Project’s SOPO. Lastly, Time Scale Analysis is a novel tool for discovering the needs and directions of Process Intensification implementations in any process technology. This Project is fully credited for developing and implementing the three novel technical approaches mentioned above. These are general contributions to process engineering that emerged from this Project. Beyond the original SOPO scope, the OSU-U.Pitt research group utilized a Convergent Design methodology, integrating first-principles mathematical modeling with experimental validation on the Minimum Development Vehicle. By creating these Digital Twins, the team rapidly assessed manufacturing iterations to support TEA analysis. This framework further enabled the development of advanced Surface Modification Techniques, where hydrophobic and oleophobic coating strategies were optimized via Digital Twin tools and validated through rigorous 100-hour longevity testing. TEA Analysis: The closing efforts of this Project were focused on the TEA analysis. TEA analysis had two primary functions: i) enabling critical assessments of design variations withing 10 the Concurrent Design Approach, thus enabling evolution of the MPSE design to reach faster- better-cheaper alternatives; and ii) to create a bridge between the accomplishments of this Project and future projects of higher TRL, beyond TRL 6 level. It is important to note that the TEA model created in the Project stirred the technological solutions for the recovery of critical materials toward a vision of a very profitable modular plant that has unique zero-waste water discharge signature. More importantly, thanks to our experimental performance data and conservative assumptions, the TEA model predicts minimal technological and investment risks. Low cost of a modular unit of a nominal capacity of [1000 tons of Li 2 CO 3 /year] positions the MPSE based technology within the reach of community investors, thus offering a paradigm shift in the development of critical technologies. The project successfully navigated two primary challenges: solvent selection and manufacturing adaptation. Restricted by the SOPO to existing literature for lithium recovery, the team identified a critical need for a "material excellence program" to develop next-generation solvents, eventually concluding with a preliminary investigation into promising Ionic Liquids (ILs). Simultaneously, COVID-19 supply chain disruptions forced a pivot from traditional manufacturing to advanced additive methods at ATAMI-OSU. By transitioning from stainless steel to 3D-printed polymer substrates, the team achieved a transformative three-order-of- magnitude reduction in manufacturing costs and compressed prototyping timelines from several months to just two days. The MPSE technology offers significant energy, environmental, and economic advantages by overcoming the traditional bottlenecks of phase-separation hardware and contactor size. Unlike conventional mixer-settlers or membrane-based systems, MPSE operates without moving parts or fouling-prone membranes, achieving robust performance even with challenging, viscous, or particulate-heavy feeds. Key performance metrics include an energy intensity reduction of 5–50x (3–40 kJ/m 3 ) compared to incumbent technologies and a dramatic reduction of processing time to under 60 seconds, which drastically reduces the physical plant footprint. These technical efficiencies translate into superior economic outcomes; for a 100 t/year Li 2 CO 3 facility, implementing MPSE is projected to nearly halve contactor CAPEX (from $\$$6.08M to $\$$3.01M) and significantly increase the project's Net Present Value (NPV), derisking new investment and enabling distributed critical-mineral processing configurations. The commercialization of MPSE technology is being spearheaded by Vigsur Dynamics Inc., which has adopted a structured, parallel approach to technical and business development since its formation in January 2026. Following extensive customer discovery and engagement with the Oregon State University accelerator, Vigsur Dynamics is working to establish a business model that transitions from pilot demonstrations to modular hardware sales, ultimately aiming for a "build-own-operate" service strategy. Current technical milestones—including 100 hours of continuous operation, superior energy efficiency, and successful 6-unit modular scale-up— provide a foundation for this transition. Backed by ongoing IP licensing and a growing network of industrial and venture advisors, the company is actively de-risking the platform to replace conventional mixer-settler systems in the critical minerals market.

37 INORGANIC, ORGANIC, PHYSICAL, AND ANALYTICAL CH

A Full-Stack Exploration of Language-Based Parallelism in Fortran 2023

This poster explores native parallel features in Fortran 2023 through the lens of supporting applications with libraries, compilers, and parallel runtimes. The language revision informally named Fortran 2008 introduced parallelism in the form of Single Program Multiple Data (SPMD) execution with two broad feature sets: (1) loop-level parallelism via do concurrent and (2) a Partitioned Global Address Space (PGAS) comprised of distributed “coarray” data structures. Fortran’s native parallelism has demonstrated high performance [1] and reduced the burden of inserting what sometimes amounts to more directives than code. Several compilers support both feature sets, typically by translating do concurrent into serial do loops annotated by parallel directives and by translating SPMD/PGAS features into direct calls to a communication library. Our research focuses primarily on two questions: (1) can the compiler’s parallel runtime library be developed in the language being compiled (Fortran) and (2) can we define an interface to the runtime that liberates compilers from being hardwired to one runtime and vice versa. We are answering these questions by developing the Parallel Runtime Interface for Fortran (PRIF) [2] and the Co-Array Fortran Framework of Efficient Interfaces to Network Environments (Caffeine) [3]. Caffeine is initially targeting adoption by LLVM Flang, a new open-source Fortran compiler developed by a broad community in industry, academia, and government labs. We are also exploring the use of these features in Inference-Engine, a deep learning library designed to facilitate neural network training and inference for high-performance computing applications written in modern Fortran.

Rasmussen, Katherine

Excitation Laser Energy Dependence of the Gap-Mode TERS Spectra of WS 2 and MoS 2 on Silver

In this work we present a systematic study of the dependence of the gap mode tip-enhanced Raman scattering (TERS) response of the mono- and bi-layer WS 2 and MoS 2 on silver as a function of the excitation laser energy in a broad spectral range from 473nm to 830 nm. For this purpose, we collected consecutive TERS maps of the same area in the sample containing mono-and bi-layer regions with the same TERS probe with 6 different excitation lasers. To decrease the number of collected TERS maps, we used for the first time to the best of our knowledge, concurrent excitation and collection with two lasers simultaneously. We found that the E 2g /A 1g peak intensity ratio for the bilayer WS 2 @Ag and the ratio of the A’/A 1g peak intensity of the out-of-plane mode for the mono- and the bilayer, change in a significantly non-monotonous way as the excitation laser energy is swept from 1.58 eV to 2.62 eV. The former ratio increases at energies corresponding to A and B excitons (~2.0 eV and 2.4 eV correspondingly) in bilayer WS 2 . The absolute intensity of the A’ peak in the monolayer, and correspondingly the A’/A 1g ratio, is surprisingly high at lower excitation energies, but dips dramatically at the energy corresponding to the A exciton, being restored partially in between A and B excitons, but still showing the descending trend as the excitation laser energy increases. A somewhat similar picture was observed in mono- and bi-layers of MoS 2 @Ag, though the existing set of excitation lasers did not match the excitonic profile of this material as nicely as for the case of WS 2 . We attribute the observed behavior to the presence of intermediate (Fano resonance) or strong (Rabi splitting) coupling between the excitons in transition metal dichalcogenides (TMDs) and the plasmons in the tip-substrate nanocavity. This is akin to the so-called Fano (Rabi) transparency experimentally observed in far field scattering from transition metal dichalcogenides between two plasmonic metals. The possibility of the formation of intermediate/strong coupling between the excitonic resonances in TMDs and the nanocavity re-evaluates the role of various resonances in the gap-mode TERS and should become an important factor to be considered by TERS practitioners during planning the experiments. Lastly, based on observed phenomena and its explanation, we propose the “ideal” substrate for efficient TERS and tip enhanced photoluminescence (TEPL) measurements.

Raman spectroscopy

Investigation of Key Electronic States in Layered Mixed Chalcogenides With a d 0 Transition Metal as Li-Ion Cathodes

Lithium-rich transition metal chalcogenides are witnessing a revival as candidates for Li-ion cathode materials, spurred by the boost in their capacities from transcending conventional redox processes based on cationic states and tapping into additional chalcogenide states. A particularly striking case is Li 2 TiS 3-y Se y , which features a d 0 metal. While the end members are expectedly inactive, substantial capacities are measured when both Se and S are present. Using X-ray absorption spectroscopy, it is shown that the electronic structure of Li 2 TiS 3-y Se y is not a simple combination of the end members. The data confirm previous hypotheses that, in Li 2 TiS 2.4 Se 0.6 , this behavior is underpinned by concurrent and reversible redox of only S and Se, and identify key electronic states. Moreover, wavelet transforms of the extended X-ray absorption fine structure provide direct evidence of the formation of short Se–Se units upon charging. The study uncovers the underpinnings of this intriguing reactivity and highlights the richness of redox chemistry in complex solids.

25 ENERGY STORAGE

Charge Density Wave and Ferromagnetism in Intercalated CrSBr

In materials with 1D electronic bands, electron–electron interactions can produce intriguing quantum phenomena, including spin-charge separation and charge density waves (CDW). Most of these systems, however, are non-magnetic, motivating a search for anisotropic materials where the coupling of charge and spin may affect emergent quantum states. Here, in this study, chemical intercalation of the van der Waals magnetic semiconductor CrSBr yields Li 0.17(2) (tetrahydrofuran) 0.26(3) CrSBr, which possesses an electronically driven quasi-1D CDW with an onset temperature above room temperature. Concurrently, electron doping increases the magnetic ordering temperature from 132 to 200 K and switches its interlayer magnetic coupling from antiferromagnetic to ferromagnetic. The spin-polarized nature of the anisotropic bands that give rise to this CDW enforces an intrinsic coupling of charge and spin. The coexistence and interplay of ferromagnetism and charge modulation in this exfoliatable material provide a promising platform for studying tunable quantum phenomena across a range of temperatures and thicknesses.

2D magnets

Complex-Concentrated Anion Doping Enables Ultra-Stable Lattice Oxygen and Structural Integrity in Lithium-Rich Layered Oxide Cathodes

Lithium- and manganese-rich layered oxides (LMR) stand out as next-generation lithium-ion cathode chemistries, which harness both transition-metal and lattice-oxygen redox processes to deliver exceptional capacity and energy density. However, their full potential is hindered by intrinsic oxygen instability and structural degradation, resulting in pronounced voltage fade and capacity decay. Here, we present a complex-concentrated anion-doping paradigm in which multiple anions, F, Br, and S, are incorporated into the oxygen sublattice to enhance oxygen-redox and structural stability. X-ray absorption spectroscopy and aberration-corrected scanning transmission electron microscopy confirm ultra-stable local oxygen coordination environments during long-term cycling, with detrimental phase transformations and oxygen-loss-induced cavitation dramatically inhibited. Notably, we show that the characteristic LiTM6 transition metal (TM) honeycomb ordering is preserved even after electrochemical cycling. Concurrently, this strategy yields an unprecedented volume change of only 0.63% upon charging to 4.8 V vs. Li+/Li, achieving the first zero-strain LMR cathode. The resulting LMR cathode delivers ultralow voltage fade (1 mV per cycle during the first 100 cycles and becomes negligible in subsequent cycles) and outstanding energy retention (93% after 200 cycles) in a pouch cell configuration. Our complex-concentrated anion-doping concept establishes a broadly applicable strategy for resolving chemo-mechanical failure mechanisms in ceramic intercalation electrodes for next-generation energy storage.

Li-ion batteries

Phase Transformation and Water Adsorption Behavior of As‐Deposited and Annealed Ru Metal Thin Films Prepared by Atomic Layer Deposition

ABSTRACT Surfaces play a central role in catalytic processes, and understanding the transformation of ruthenium metal into ruthenium oxide during annealing is essential for tailoring functional catalytic interfaces. In this study, we systematically investigate ≈22 nm thick Ru metal films deposited by atomic layer deposition (ALD) at 300°C, focusing on their chemical composition, structural evolution, and surface hydration behavior following post‐deposition annealing in air from 400 to 600°C. Lab‐based and synchrotron X‐ray photoelectron spectroscopy (XPS) reveal a gradual conversion from metallic Ru to fully oxidized Ru 4+ with increasing annealing temperature, accompanied by a corresponding increase in lattice oxygen. X‐ray diffraction (XRD) shows amorphous Ru oxide phases at 400°C and 500°C that evolve into crystalline RuO 2 at 600°C, while atomic force microscopy (AFM) indicates enhanced grain growth and surface roughening upon annealing. Ambient‐pressure XPS (AP‐XPS) under controlled H 2 O vapor environments (1–17 Torr) demonstrates that samples annealed at 400°C and 500°C exhibit initially high hydroxyl coverage that decreases with increasing water vapor pressure, concurrent with a rise in molecular H 2 O adsorption. In contrast, the crystalline RuO 2 surface formed at 600°C maintains stable hydroxylation and supports increased water uptake. Overall, this work provides fundamental insight into Ru oxide–H 2 O interactions and establishes design principles for engineering oxide surfaces optimized for electrocatalytic applications.

APXPS

New Directions in Focused Ion Beam Induced Deposition for the Nanoprinting of Functional 3D Heterostructures

The focused ion beam (FIB) microscope is well established as a high-resolution machining instrument capable of site-selectively removing material down to the nanoscale. Beyond subtractive processing, however, the FIB can also add material via a technique known as focused ion beam induced deposition (FIBID). Using FIBID, the FIB can thus be employed for the direct-write of complex nanostructures. This work explores new directions in three-dimensional FIBID nanoprinting, harnessing unique features of helium and neon FIBs. In particular, the superior spatial resolution of these novel FIBs is leveraged to fabricate precise multimaterial architectures, an isotope effect is used to create satellite deposits, and dose-controlled implantation of the gaseous ions is used to engineer internal voids. In the context of voids, the fabrication of hollow nanopillars by helium-FIBID due to concurrent milling (as shown previously by others) is revisited. Insight into the chemical and structural composition of the nanostructures is obtained using advanced electron microscopy, accurately revealing buried interfaces, crystallite distributions, chemical compositions, and material transformations. Next-generation devices and technologies that could be enabled by the novel heterostructures demonstrated here are discussed, setting the stage for the potential evolution of FIBID into a versatile platform for functional nanomaterials design and fabrication.

FIBID

Non-Reciprocity, Metastability, and Dynamic Reconfiguration in Co-Assembly of Active and Passive Particles

Living organisms often exhibit non-reciprocal interactions where the forces acting on the objects are not equal in magnitude or opposite in direction. The combination of reciprocal and non-reciprocal interactions between synthetic building blocks remains largely unexplored. Here, out-of-equilibrium assemblies of non-motile isotropic passive and metal-patched motile active particles are formed by overlapping bulk interactions with directed self-propulsion. An external alternating current (AC) electric field generates concurrent dipolar and induced-charge electrophoretic forces between the particles which are evaluated using microscopy. The interaction force measurements allow to determine the degree of reciprocity in interactions, which is tunable by designing the active particle and its trajectory. While linearly-propelled active particles evade assembly with passive particles, helically propelled active particles form active-passive clusters with dynamic reconfiguration and long-lived metastability. Large clusters display programmable fluctuations and reconfigurability by controlling the fraction of active particles. The study establishes principles of integrating reciprocal and non-reciprocal interactions in guided colloidal assembly of reconfigurable metastable structures.

37 INORGANIC, ORGANIC, PHYSICAL, AND ANALYTICAL CH

Green Electrode Processing Enabled by Fluoro-Free Multifunctional Binders for Lithium-Ion Batteries

The eco-friendly processing of conjugated polymer binder for lithium-ion batteries demands improved polymer solubility by introducing functional moieties, while this strategy will concurrently sacrifice polymer conductivity. Employing the polyfluorene-based binder poly(2,7-9,9 (di(oxy-2,5,8-trioxadecane))fluorene) (PFO), soluble in water-ethanol mixtures, a novel approach is presented to solve this trade-off, which features integration of aqueous solution processing with subsequent controlled thermal-induced cleavage of solubilizing side chains, to produce hierarchically ordered structures (HOS). The thermal processing can enhance the intermolecular π–π stacking of polyfluorene backbone for better electrochemical performance. Notably, HOS-PFO demonstrated a substantial 6–7 orders of magnitude enhancement in electronic conductivity, showcasing its potential as a functional binder for lithium-ion batteries. As an illustration, HOS-PFO protected SiOx anodes, utilizing in situ side chain decomposition of PFO surrounding SiOx particles after aqueous processing are fabricated. HOS-PFO contributed to the stable cycling and high-capacity retention of practical SiOx anodes (3.0 mAh cm -2 ), without the use of any conducting carbon additives or fluorinated electrolyte additives. It is proposed that this technique represents a universal approach for fabricating electrodes with conjugated polymer binders from aqueous solutions without compromising conductivity.

25 ENERGY STORAGE

Pressure‐Induced Metallization and Isostructural Transitions in 3R‐MoS2

At ambient conditions 3R-polytypes of transition metal dichalcogenides (TMDs) demonstrate fascinating properties because of their unique layer stacking. Understanding the structure-property relationship is essential for the realization of their use in spintronic, valleytronic, and optoelectronic applications. Herein, after the high pressure-temperature synthesis of 3R-MoS2 in a large volume cubic press, a concomitant experimental and theoretical high-pressure study of 3R-MoS2 is reported, leading to the discovery of pressure-induced reversible isostructural phase transitions without symmetry breaking. Concurrent with the isostructural transitions, a semiconductor-to-metal transition is observed, owing to strong interlayer interaction and charge redistribution across the van der Waals gap under pressure. The pressure-induced enhancement of interlayer interactions together with the robust intrinsic layer stacking in 3R-MoS2 prevent the layers from sliding under pressure and hinder a corresponding volume collapse. This study on continuous pressure-tuning of crystal and electronic structure in 3R-MoS2 will play a vital role in developing the next-generation devices involving coupling of structural, optical, and electrical properties of 3R-polytypes of TMDs and other layered materials.

Ahmad, Azkar Saeed

Strain Fluctuations Unlock Ferroelectricity in Wurtzites

Ferroelectrics are of practical interest for non-volatile data storage due to their reorientable, crystallographically defined polarization. Yet efforts to integrate conventional ferroelectrics into ultrathin memories have been frustrated by film-thickness limitations, which impede polarization reversal under low applied voltage. Wurtzite materials, including magnesium-substituted zinc oxide (Zn,Mg)O, have been shown to exhibit scalable ferroelectricity as thin films. In this work, the origins of ferroelectricity in (Zn,Mg)O are explained, showing that large strain fluctuations emerge locally in (Zn,Mg)O and can reduce local barriers to ferroelectric switching by more than 40%. Concurrent experimental and computational evidence of these effects are provided by demonstrating polarization switching in ZnO/(Zn,Mg)O/ZnO heterostructures featuring built-in interfacial strain gradients. These results open up an avenue to develop scalable ferroelectrics by controlling strain fluctuations atomistically.

36 MATERIALS SCIENCE

Soft and Stretchable Thienopyrroledione–Based Polymers via Direct Arylation

π-conjugated polymers (CPs) that are concurrently soft and stretchable are needed for deformable electronics. Molecular-level modification of indacenodithiophene (IDT) copolymers, a class of CPs that exhibit high hole mobilities (μ hole ), is an approach that can help realize intrinsically soft and stretchable CPs. Numerous examples of design strategies to adjust the stretchability of CPs exist, but imparting softness is comparatively less studied. In this study, a systematic molecular weight (MW) series is constructed on a promising candidate for soft CPs, poly(indacenodithiophene-co-thienopyrroledione) (p(IDT C16- TPD C8 )), by optimizing direct arylation polymerization conditions in hopes of improving stretchability and μhole without significantly impacting softness. We found p(IDT C16- TPD C8 ) at a degree of polymerization of 32 shows high stretchability (crack onset strain, CoS > 100%) without significantly impacting softness (elastic modulus, E = 32 MPa), which to the best of our knowledge outperforms previously reported stretchable and soft CPs. To further study how molecular-level modifications impact polymer properties, a MW series of a new extended donor unit polymer, poly(indacenodithienothiophene-co-thienopyrroledione) (p(IDTT C16- TPD C8 )), was synthesized. The IDTT C16 copolymers did not result in a greater average μ hole when comparing between p(IDTT C16- TPD C8 ) and p(IDT C16- TPD C8 ) despite their higher crystallinity observed by GIWAXS. While these findings warrant further investigation, this study points toward unique charge transport properties of IDT-based polymers.

direct arylation polymerization