Engineering Papers⌕ Search

SEARCH · Engineering Papers

Results for “SYNTHESIS”

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

Synthesis Roadmap for Actinide Chloride Salts

Molten salt reactors (MSRs) are among the main advanced nuclear reactor types at the forefront of development by industry, with the support of the US government, for the next fleet of nuclear reactors to support the demand for energy in the coming decades. MSRs are highly unique because they are cooled and typically also fueled by molten salt. This quality brings about safety benefits such as low-pressure operation and self-stabilization of the neutron flux, operational benefits such as high-temperature operation and the ability for online refueling, and fuel and waste management benefits thanks to the flexibility of post-processing of molten salts and reprocessing options that involve removal of fission products and actinide separation. In fact, domestic deployment of molten salt (or molten salt–cooled) reactors is an approaching reality: a handful of molten salt reactor developers are planning to operate demonstration-scale reactors, as a step toward commercial-scale power reactors, within the decade. For example, Natura Resources received a construction permit in September 2024 for the deployment of MSR-1, which is a graphite-moderated thermal spectrum reactor, at Abilene Christian University. Also, TerraPower, in a collaborative effort with Southern Company and Idaho National Laboratory (INL), received approval from DOE in 2023 to proceed with the construction of the Molten Chloride Reactor Experiment (MCRE), a homogeneous chloride fast reactor at INL, and has begun assembly of system components. There are several other examples of developers at different stages of development of their own unique MSR designs (Jenet et al., 2025). As developers are in the process of obtaining approvals for their designs, deploying demonstration-scale reactors, and planning for their commercial-scale power reactors, there is a critical supply chain need for the synthesis of fuel for these reactors that must be addressed. The challenge generally is three-fold: (1) the quantity of fueled salt needed for these reactors is extraordinarily high (>100s of kilograms), but demonstrations of scaled-up techniques for fueled salt synthesis are significantly more limited than demonstrations of lab-scale syntheses; (2) each developer has a unique reactor design, which means different actinide halide elements in different carrier salts must be synthesized; and (3) there is a need for particularly high-purity salt so as to ensure the long-term operability of these reactors with minimal degradation to salt-wetted components, which necessitates synthesis techniques with high levels of quality control, repeatability, and well-characterized precursor and reactant materials. It is crucial that this supply chain challenge be addressed by demonstrating synthesis techniques that are scalable, de-risked, and well-documented so that these technologies may be adopted and utilized by industry to support the fueling needs of MSRs that are to come online within the next 10 years. With this supply chain challenge clearly defined for the developing MSR industry, it is important to consider that addressing such a challenge is oftentimes complex and context-dependent. There is not necessarily a single synthesis technique that can be scaled up and adopted to address the needs of all MSR developers; the synthesis approach that may be viable for producing a desired fuel salt will be entirely dependent on the exact salt composition needed, the quantity needed, purity needed, the refueling and waste plans, and the availability of a carrier salt for the fuel. Therefore, it is important to consider more broadly what synthesis techniques are available and have been demonstrated to understand the benefits, challenges, and general nuances that should be considered when evaluating a particular route for efficient production of high-purity fuel salts at scale.

11 NUCLEAR FUEL CYCLE AND FUEL MATERIALS↗

Flame Synthesis Of Single-Walled Carbon Nanotubes And Nanofibers

Carbon nanotubes are widely sought for a variety of applications including gas storage, intercalation media, catalyst support and composite reinforcing material [1]. Each of these applications will require large scale quantities of CNTs. A second consideration is that some of these applications may require redispersal of the collected CNTs and attachment to a support structure. If the CNTs could be synthesized directly upon the support to be used in the end application, a tremendous savings in post-synthesis processing could be realized. Therein we have pursued both aerosol and supported catalyst synthesis of CNTs. Given space limitations, only the aerosol portion of the work is outlined here though results from both thrusts will be presented during the talk. Aerosol methods of SWNT, MWNT or nanofiber synthesis hold promise of large-scale production to supply the tonnage quantities these applications will require. Aerosol methods may potentially permit control of the catalyst particle size, offer continuous processing, provide highest product purity and most importantly, are scaleable. Only via economy of scale will the cost of CNTs be sufficient to realize the large-scale structural and power applications on both earth and in space. Present aerosol methods for SWNT synthesis include laser ablation of composite metalgraphite targets or thermal decomposition/pyrolysis of a sublimed or vaporized organometallic [2]. Both approaches, conducted within a high temperature furnace, have produced single-walled nanotubes (SWNTs). The former method requires sophisticated hardware and is inherently limited by the energy deposition that can be realized using pulsed laser light. The latter method, using expensive organometallics is difficult to control for SWNT synthesis given a range of gasparticle mixing conditions along variable temperature gradients; multi-walled nanotubes (MWNTs) are a far more likely end products. Both approaches require large energy expenditures and produce CNTs at prohibitive costs, around $500 per gram. Moreover these approaches do not possess demonstrated scalability. In contrast to these approaches, flame synthesis can be a very energy efficient, low-cost process [3]; a portion of the fuel serves as the heating source while the remainder serves as reactant. Moreover, flame systems are geometrically versatile as illustrated by innumerable boiler and furnace designs. Addressing scalability, flame systems are commercially used for producing megatonnage quantities of carbon black [4]. Although it presents a complex chemically reacting flow, a flame also offers many variables for control, e.g. temperature, chemical environment and residence times [5]. Despite these advantages, there are challenges to scaling flame synthesis as well.

Wal, Randy L. Vander↗

The Role of Ontologies in Schema-based Program Synthesis

Program synthesis is the process of automatically deriving executable code from (non-executable) high-level specifications. It is more flexible and powerful than conventional code generation techniques that simply translate algorithmic specifications into lower-level code or only create code skeletons from structural specifications (such as UML class diagrams). Key to building a successful synthesis system is specializing to an appropriate application domain. The AUTOBAYES and AUTOFILTER systems, under development at NASA Ames, operate in the two domains of data analysis and state estimation, respectively. The central concept of both systems is the schema, a representation of reusable computational knowledge. This can take various forms, including high-level algorithm templates, code optimizations, datatype refinements, or architectural information. A schema also contains applicability conditions that are used to determine when it can be applied safely. These conditions can refer to the initial specification, to intermediate results, or to elements of the partially-instantiated code. Schema-based synthesis uses AI technology to recursively apply schemas to gradually refine a specification into executable code. This process proceeds in two main phases. A front-end gradually transforms the problem specification into a program represented in an abstract intermediate code. A backend then compiles this further down into a concrete target programming language of choice. A core engine applies schemas on the initial problem specification, then uses the output of those schemas as the input for other schemas, until the full implementation is generated. Since there might be different schemas that implement different solutions to the same problem this process can generate an entire solution tree. AUTOBAYES and AUTOFILTER have reached the level of maturity where they enable users to solve interesting application problems, e.g., the analysis of Hubble Space Telescope images. They are large (in total around 100kLoC Prolog), knowledge intensive systems that employ complex symbolic reasoning to generate a wide range of non-trivial programs for complex application do- mains. Their schemas can have complex interactions, which make it hard to change them in isolation or even understand what an existing schema actually does. Adding more capabilities by increasing the number of schemas will only worsen this situation, ultimately leading to the entropy death of the synthesis system. The root came of this problem is that the domain knowledge is scattered throughout the entire system and only represented implicitly in the schema implementations. In our current work, we are addressing this problem by making explicit the knowledge from Merent parts of the synthesis system. Here; we discuss how Gruber's definition of an ontology as an explicit specification of a conceptualization matches our efforts in identifying and explicating the domain-specific concepts. We outline the dual role ontologies play in schema-based synthesis and argue that they address different audiences and serve different purposes. Their first role is descriptive: they serve as explicit documentation, and help to understand the internal structure of the system. Their second role is prescriptive: they provide the formal basis against which the other parts of the system (e.g., schemas) can be checked. Their final role is referential: ontologies also provide semantically meaningful "hooks" which allow schemas and tools to access the internal state of the program derivation process (e.g., fragments of the generated code) in domain-specific rather than language-specific terms, and thus to modify it in a controlled fashion. For discussion purposes we use AUTOLINEAR, a small synthesis system we are currently experimenting with, which can generate code for solving a system of linear equations, Az = b.

Bures, Tomas↗

Cell-Free-Based Thermophilic Biocatalyst for the Synthesis of Amino Acids from One-Carbon Feedstocks

Bioproduction from one-carbon compounds, such as formate, is an attractive prospect due to reduced energy requirements and the possibility for using CO 2 as a sustainable feedstock. Formate-fixing pathways engineered using Escherichia coli lysate-based cell-free expression (CFE) biocatalysts have the potential to route 100% of feedstock carbon toward chemical synthesis but are undermined by siphoning of in-pathway metabolites and cofactors by the CFE background metabolism. To address this limitation, we engineer a CFE-based thermophilic multienzyme biocatalyst for the synthesis of serine and glycine from formate, bicarbonate, and ammonia. After expression of the thermophilic formate-to-serine pathway in a one-pot reaction, the mesophilic E. coli CFE background machinery is removed by simple heat denaturation, eliminating the siphoning of cofactors, inpathway metabolites, and products. After bioprocess optimization, including pathway gene expression duration and chemical synthesis temperature, we achieve near stoichiometric conversion of formate and bicarbonate to serine and glycine, reaching 97% of stoichiometric yield. The use of a moderately thermophilic biocatalyst allowed chemical synthesis to take place at mesophilic temperatures, enabling the balance of optimal enzyme activity with minimal metabolite/cofactor thermal degradation. In a fed-batch experiment, the biocatalyst shows sustained chemical synthesis rates for 8 h, paving the way toward a continuous bioprocess. Finally, a sensitivity analysis of cofactor usage revealed that the most expensive cofactors, THF and NADPH, can be reduced by 5-fold without significantly lowering product yields. To the best of our knowledge, this is the first instance of expressing a thermophilic pathway in an E. coli lysate-based CFE system to generate a thermophilic biocatalyst for use at mesophilic temperatures. The CFEbased thermophilic formate-to-serine biocatalyst triples the combined serine and glycine yield previously obtained by a CFE-based mesophilic formate-to-serine biocatalyst (30%), and quadruple the yield obtained by a purified enzyme system (22%). Ultimately, this work opens the door to using E. coli lysate-based CFE for thermophilic biocatalyst generation to achieve high chemical synthesis yields.

bacteria↗

Interzeolite Transformation through Cross-Nucleation: A Molecular Mechanism for Seed-Assisted Synthesis

Polymorph selection and efficient crystallization are central goals in zeolite synthesis. Crystalline seeds are used for both purposes. While it has been proposed that zeolite seeds induce interzeolite transformation by dissolving into structural units that promote nucleation of the daughter crystal, the seed’s structural elements do not always match those of the target zeolite. This discrepancy raises the question of how the seed promotes the daughter phase. Here, we present the first molecularly resolved investigation of seed-assisted zeolite synthesis. Using molecular simulations, we reproduce the experimental finding that a parent zeolite can promote the nucleation of a daughter zeolite even when it lacks common composite building units (CBUs) or crystal planes. Modeling the seed-assisted synthesis of an AFI-type zeolite using zeolite CHA, our simulations indicate that stand-alone CBUs from the parent seed do not facilitate daughter crystal formation. However, introducing the intact seed significantly reduces the synthesis time, supporting that seed integrity is key to increased efficiency. This reduction arises from the cross-nucleation of the AFI-type zeolite on the CHA (001) face. We find that parent and daughter zeolites are connected by an interfacial transition layer with an order distinct from that of both zeolites. Simulations reveal that cross-nucleation occurs over a broad range of synthesis conditions. We argue that cross-nucleation would be most favorable for zeolite pairs that share crystalline planes such as those forming intergrowths. In conclusion, our findings suggest that the prevalence of intergrowths with a common lattice plane in zeolite synthesis is likely a kinetic effect of accelerated cross-nucleation.

Crystallization↗

Rapid Oxidation of Uranium Steel Alloys: Combustion Synthesis

This project explored the use of combustion synthesis as a rapid, high-temperature method for oxidizing uranium-bearing steel alloys. Traditional laboratory-scale synthesis methods often fail to replicate the thermal and kinetic conditions experienced by real-world particulates, particularly those formed under rapid quenching or high-temperature scenarios. Combustion synthesis offers a promising alternative by enabling fast, localized heating and flexible precursor selection. A series of targeted experiments were conducted using a U 2 NiCrFe 4 alloy as the precursor. The alloy was oxidized using combustion synthesis reactions fueled by uranyl nitrate and glycine, achieving peak temperatures exceeding 1,200 °C. Postreaction analysis using scanning electron microscopy (SEM), elemental mapping, and Raman spectroscopy revealed the formation of iron-based oxides, with limited but detectable evidence of uranium oxide phases such as UO 2 . The results indicate that under the rapid reaction and cooling conditions of combustion synthesis, iron oxides form preferentially, but uranium oxide formation is kinetically limited. These findings validate combustion synthesis as a viable method for simulating the oxidation behavior of uranium steels in extreme environments and lay the groundwork for future studies aimed at enhancing uranium oxide formation through higher temperatures or modified precursor compositions.

36 MATERIALS SCIENCE↗

Impact of Time Dependent Reactor and Sensor Physics on Core Power Synthesis

Online synthesis of the power distribution is critical in the operation and control of nuclear power reactors to ensure that the core is operating within safety margins, and to provide essential knowledge associated with the burnup of the fuel. In light water reactors (LWRs), power synthesis is achieved by using some a priori knowledge of the state of the reactor core and updating based on the signals coming from in-core sensors—namely, self-powered neutron detectors (SPNDs). This report aims to study the effects of fuel burnup and sensor degradation on the ability to accurately synthesize the power distribution in a LWR. Several modeling tools were used to simulate power synthesis based on the responses of SPNDs, with emitters made out of Rh or V. A representative pressurized water reactor low-enriched uranium (LEU) core was modeled using the Polaris/Purdue Advanced Reactor Core Simulator (PARCS) approach. The Monte Carlo N-Particle Transport 6 (MCNP6) code was used, as well, to calculate response functions between different segments of fuel to individual SPNDs; this is a crucial parameter for power synthesis. The Oak Ridge Isotope GENeration (ORIGEN) package in the Standardized Computer Analyses for Licensing Evaluation (SCALE) code was used to model the time-dependent isotopic transmutation in the SPND emitters. All these data were fed into a custom code that enacted the point-based iterative (PBI) method to simulate power synthesis. Developmental work was also performed on high-fidelity SPND models in the GEometry ANd Tracking 4 (Geant4) code, which enables higher-accuracy modeling of the current responses from SPNDs. In this work, five sets of time-dependent power synthesis test cases were conducted. In these test cases, systematic changes in the input conditions enabled an analysis of the effect of (1) slightly inaccurate a priori power distribution assumptions with respect to fuel burnup, (2) highly inaccurate a priori assumptions with respect to fuel burnup (such that burnup is not included in the a priori assumed distribution), and (3) differences between Rh and V SPNDs in terms of downstream consequences of the transmutation in the emitters. The authors discovered that one may permissibly have slightly inaccurate a priori assumptions of the fuel burnup (such that the level of burnup may be slightly under- or over-approximated by the accumulated burnup in approximately 9.3 full power days), but to not account for burnup at all in the a priori assumption leads to severe levels of error, approaching 25% at maximum. The authors also discovered that V SPNDs are extraordinarily robust in the low-enriched uranium fuel cycle considered in this modeling work, whereas Rh SPNDs undergo significant transmutation that can result in large errors in the synthesized power distribution.

22 GENERAL STUDIES OF NUCLEAR REACTORS↗

Impact of Time-Dependent Reactor and Sensor Physics on Core Power Synthesis (Rev.1)

Online synthesis of power distribution is critical in the operation and control of nuclear power reactors to ensure that the core is operating within safety margins and to provide essential knowledge associated with the burnup of the fuel. In light-water reactors, power synthesis is achieved by using some a priori knowledge of the state of the reactor core and updating based on the signals coming from in-core sensors—namely, self-powered neutron detectors (SPNDs). This report examines the effects of fuel burnup and sensor degradation on the ability to accurately synthesize the power distribution in a pressurized water reactor (PWR), considering the typical low-enriched uranium (LEU, 3%-5% enrichment) fuel cycle as well as the higher enrichment LEU+ (5%-8% enrichment) fuel cycle. Several modeling tools were used to simulate power synthesis based on the responses of SPNDs, with emitters made out of Rh or V. A representative PWR LEU core was modeled using the Polaris/Purdue Advanced Reactor Core Simulator (PARCS) approach. The Monte Carlo N-Particle Transport 6 (MCNP6) code was used as well to calculate response functions between different segments of fuel to individual SPNDs; this is a crucial parameter for power synthesis. The Oak Ridge Isotope GENeration (ORIGEN) package in the Standardized Computer Analyses for Licensing Evaluation (SCALE) code was used to model the time-dependent isotopic transmutation in the SPND emitters. All these data were fed into a custom code that enacted the point-based iterative method to simulate power synthesis. Developmental work was also performed on high-fidelity SPND models in the GEometry ANd Tracking 4 (Geant4) code, which enables higher-accuracy modeling of the current responses from SPNDs. In this work, five sets of time-dependent power synthesis test cases were conducted. In these test cases, systematic changes in the input conditions enabled an analysis of the effect of (1) slightly inaccurate a priori power distribution assumptions with respect to fuel burnup, (2) highly inaccurate a priori power distribution assumptions with respect to fuel burnup (such that burnup is not included in the a priori assumed distribution), and (3) differences between Rh and V SPNDs in terms of downstream consequences of the transmutation in the emitters and the extended nature of the LEU+ fuel cycle in comparison with LEU. The authors discovered that one may permissibly have slightly inaccurate a priori assumptions of the fuel burnup (such that the level of burnup may be slightly underapproximated or overapproximated by the accumulated burnup in approximately 9.3 full power days), but to not account for burnup at all in the a priori assumptions leads to severe levels of error, approaching 25% at maximum (for LEU). The authors also discovered that V SPNDs are extraordinarily robust in both the LEU and LEU+ fuel cycles considered in this modeling work, whereas Rh SPNDs undergo significant transmutation that can result in large errors in the synthesized power distribution.

22 GENERAL STUDIES OF NUCLEAR REACTORS↗

The Effects of Gravity on Combustion and Structure Formation During Synthesis of Advanced Materials

Combustion in a variety of heterogeneous systems, leading to the synthesis of advanced materials, is characterized by high temperatures (2000-3500 K) and heating rates (up to 10(exp 6) K/s) at and ahead of the reaction front. These high temperatures generate liquids and gases which are subject to gravity-driven flow. The removal of such gravitational effects is likely to provide increased control of the reaction front, with a consequent improvement in control of the microstructure of the synthesized products. Thus, microgravity experiments can lead to major advances in the understanding of fundamental aspects of combustion and structure formation under the extreme conditions of the combustion synthesis wave. In addition, the specific features of microgravity environment allow one to produce unique materials, which cannot be obtained under terrestrial conditions. The general goals of the current research are: 1) to improve the understanding of fundamental phenomena taking place during combustion of heterogeneous systems, 2) to use low-gravity experiments for insight into the physics and chemistry of materials synthesis processes, and 3) based on the obtained knowledge, to optimize processing conditions for synthesis of advanced materials with desired microstructures and properties. This research follows logically from the results of investigations we have conducted in the framework of our previous grant on gravity influence on combustion synthesis (CS) of gasless systems. Prior work, by others and by us, has clearly demonstrated that gravity plays an important role during combustion synthesis of materials. The immediate tasks for the future are to quantitatively identify the nature of observed effects, and to create accurate local kinetic models of the processes, which can lead to a control of the microstructure and properties of the synthesized materials. In summary, this is the value of the proposed research. Based on our prior work, we focus on the fundamental aspects of combustion and structure formation under the unique condition of microgravity.

Varma, A.↗

AI‐Driven Robot Enables Synthesis‐Property Relation Prediction for Metal Halide Perovskites in Humid Atmosphere

Materials Acceleration Platforms (MAPs) – also known as self-driving laboratories– present a new paradigm for materials science and promise an order of magnitude accelerated materials discovery compared to the traditional trial-and-error approach. Metal halide perovskites (MHPs) are an emerging class of materials for optoelectronic applications but are plagued by irreproducible optoelectronic quality, particularly for films fabricated in a humid atmosphere. Here, in this work, a machine learning (ML)-guided closed-loop platform is developed with a multimodal data fusion approach to predict synthesis–property relations for the optical quality of MHP thin films in relative humidities (RHs) ranging from 5–55%. The efficiency of this approach is confirmed by the fast-dropping learning rate to 2% after experimentally sampling less than 1% of the possible 5,000+ combinations. The prediction of synthesis–property relations is done by optical and imaging characterizations. In situ photoluminescence characterization revealed the origin of thin film quality variation at different RH. These insights provide an avenue for controlling the MHP crystallization by fine-tuning the synthesis parameters and RH for a given chemistry, thus lifting the need for stringent atmosphere control. The MAP enables an accelerated screening and understanding of the synthesis design space, facilitating rational synthesis recipe choice for a wide range of materials.

AI-driven robot↗

Autonomous Nanoparticle Synthesis Guided by In Situ Multiscale Structural Characterization

Autonomous synthesis platforms promise rapid exploration of vast parameter spaces; yet, integrating in situ structural characterization in closed-loop synthesis optimization remains challenging. We demonstrate a realization of such a closed-loop platform coupled with a droplet-flow microreactor, in situ X-ray scattering methods (SAXS/WAXS), and Gaussian process optimization to synthesize citrate-reduced Au nanoparticles with targeted characteristics. The system efficiently explored ∼19,000 synthesis recipes through 365 experiments, achieving precise control over size (4–60 nm) and polydispersity (σ < 0.11) across large citrate/gold ratios, exceeding traditional synthesis boundaries (1–10). Beyond confirming classical Turkevich–Frens trends, partial-dependence analysis revealed strong nonlinear coupling among precursor, citrate, and pH effects. Combining quantitative SAXS/WAXS analysis with electron microscopy characterization, we uncovered that crystallite size (d c ) and particle size (d) follow d c = 0.18d + β, where synthesis chemistry controls the intercept β while maintaining a universal slope. This parallel-band structure enables independent tuning of crystallite domain size at fixed particle diameter through a combination of chloride, gold precursor, citrate, and pH contributions (cross-validated Spearman ρ = 0.7 ± 0.1). High-resolution electron microscopy shows multiple lattice-fringe orientations within single particles, directly confirming polycrystalline domains and the ability to tune d c at the fixed d. The platform’s validation includes indistinguishable static versus flowing measurements, stable droplet transport at 100 °C, and <5% run-to-run variation, establishing a robust framework for mapping and controlling multiscale nanoparticle structure across expansive chemical spaces. In conclusion, the developed closed-loop platform can be applied to a borad range of nanosyntheis processes.

77 NANOSCIENCE AND NANOTECHNOLOGY↗

Target of 1 Rapamycin kinase is a positive regulator of plant fatty acid 2 and lipid synthesis

In eukaryotes, Target of Rapamycin (TOR), a conserved protein sensor kinase, integrates a diverse set of environmental cues, including growth factor signals, energy availability, and nutritional status, to direct cell growth. In plants, TOR is activated by light and sugars and regulates a wide range of cellular processes, including protein synthesis and metabolism. Fatty acid synthesis is key to membrane biogenesis that in turn, is required for cell growth. To elucidate the primary regulatory role(s) of TOR in lipid metabolism, we followed fatty acid and lipid changes in plants with altered TOR protein levels or activity for short durations, using Nicotiana benthamiana leaves, Arabidopsis seedlings and Brassica napus cell suspension cultures. Transient expression of TOR significantly elevated the levels of total fatty acids in Nicotiana benthamiana leaves, while treatment of Arabidopsis seedlings with Torin 2, a TOR specific inhibitor, for one day, caused significant reductions in fatty acids and membrane lipids. Similarly, incubating oil-producing Brassica napus suspension culture cells with Torin 2 for eight hours led to significant decreases in the levels of TFA and TAG. Taken together the results from three independent systems presented here establishes that TOR positively regulates lipid synthesis in plants, consistent with its role in animals. Furthermore, RNA-seq analysis of Torin 2-treated Arabidopsis seedlings showed that TOR promotes the upregulation of a number of genes involved in de novo fatty acid synthesis while downregulating genes involved in lipid turnover, which we propose as a mechanistic explanation for its promotion of lipid synthesis and accumulation.

59 BASIC BIOLOGICAL SCIENCES↗

Microwave Induced Combustion Synthesis of Ceramic and Ceramic-Metal Composites

In recent years, there has been a renewed interest in combustion synthesis reactions, commonly called self-propagating high-temperature synthesis. These reactions are an attractive, energy efficient approach to the synthesis of high temperature composite materials and metastable phases. Microwaves are used to induce self-propagating high temperature synthesis of ceramic and ceramic-metal composites.

high-temperature ceramics high-temperature synthes↗

Design, Synthesis, and Evaluation of Noble Metal Nanoparticles and In Situ-Decorated Carbon-Supported Nanoparticle Electrocatalysts Using Hypergolic Reactions

Here, we report the first synthesis of metal nanoparticles and supported metal nanoparticles on carbon by using hypergolic reactions. Specifically, we report the synthesis of noble metal nanoparticles (Pt, Ag, and Au) using sodium hydride (NaH) as both an ignition trigger and a reducing agent for the corresponding metal salt precursors. In addition, we report the one-step, in situ synthesis of Pt nanoparticles supported on carbon by adding sucrose as the carbon source. The hypergolically synthesized nanoparticles display elliptical morphology and are more crystalline compared with those conventionally synthesized in solution using sodium borohydride (NaBH 4 ). When tested as electrocatalysts, the hypergolic Pt nanoparticles exhibit more than 2 times higher specific electrochemical active surface area (ECSA) and a higher half-wave potential (E 1/2 ) of 0.94 V vs the reversible hydrogen electrode (RHE) compared to the conventionally synthesized ones. In addition, the electrocatalyst based on the in situ synthesized carbon that was decorated with the Pt nanoparticles synthesized hypergolically outperforms an analogous, state of the art, commercial PtC system. For example, the former shows an attractive E 1/2 (0.94 V) compared with 0.9 V for the commercial PtC. Accelerated durability tests (ADT) in an alkaline environment add another advantage. After 10 000 cycles, the hypergolically synthesized system shows a smaller reduction of E 1/2 and less degradation compared to the commercial PtC (10 mV compared to ∼30 mV). The work described here represents the first reported synthesis using hypergolic reactions of metal nanoparticles as well as supported metal nanoparticles. The properties of the resulting electrocatalysts demonstrate the versatility and promise of the new approach in materials synthesis and open new avenues for further investigation as electrocatalysts.

Chalmpes, Nikolaos↗

Influence of “Non-Interacting” Flux Concentration in Metallic Flux Growth Synthesis

In situ experiments probing the mechanisms of flux growth synthesis above 1100 °C, though challenging, enable direct observation of synthetic pathways, products, and metastable phases. In this study, in situ powder X-ray diffraction of flux growth synthesis up to 1200 °C was employed to investigate the role of Sn flux in the synthesis of praseodymium cobalt germanides. We demonstrate that metallic fluxes, with minimal incorporation into the target compounds, significantly influence the reaction products of flux growth synthesis of intermetallic compounds. Furthermore, the validation of in situ experiments with bulk synthesis is also presented.

36 MATERIALS SCIENCE↗

Influence of Ordered Mesoporous Oxides in Plasma-Assisted Ammonia Synthesis

Widespread implementation of dielectric barrier discharge (DBD)-assisted NH 3 synthesis, a nascent technology operating under sustainable, ambient conditions, is hindered by low energy yields due to, in part, poor fundamental understanding. Porous oxides used to support metal nanoparticle catalysts have shown significant energy yield contributions for DBD-assisted NH 3 synthesis even without metal. Using an AC-powered, coaxial, single-stage reactor at 16 kV with equimolar (N 2 /H 2 ) feed, we measured NH 3 synthesis rates in the presence of different nonordered oxides, ordered SiO 2 structures (SBA-15 and MCM-41), and ordered Al-incorporated analogues (γ-Al 2 O 3 -coated with varying Al-loadings and Al-substitution, respectively: Al 2 O 3 -SBA-15 and Al-MCM-41). We systematically quantified NH 3 energy yield dependence on pore structures and material identities (i.e., ordered pores and Al incorporation) known to facilitate higher DBD-assisted NH 3 synthesis rates. SBA-15 displayed a higher steady-state energy yield than MCM-41, indicating that framework type is a crucial factor, with both ordered porous systems outperforming fumed SiO 2 . 10 wt % Al maximized in situ NH 3 uptake among the various Al loadings, exhibiting a higher steady-state energy yield and similar power to SBA-15. However, Al-MCM-41 had a similar steady-state energy yield and lower power than MCM-41, likely due to the extended γ-Al 2 O 3 surface that has a dielectric constant higher than that of SiO 2 . Both Al-incorporated analogues benefit from surface acid sites that can adsorb NH 3 in situ, resulting in higher overall NH 3 energy yields than that of their parent ordered SiO 2 . Al 2 O 3 -SBA-15 shielded more NH 3 than Al-MCM-41, likely due to a higher acid site density than the acid site identity. Furthermore, Al incorporation via γ-Al 2 O 3 coating more successfully improves the NH 3 energy yield; together with the high-performing ordered framework, these analogues are potential metal catalyst supports with promising energy yields for DBD-assisted synthesis of NH 3 and other chemicals.

37 INORGANIC, ORGANIC, PHYSICAL, AND ANALYTICAL CH↗

Synthesis pathways to thin films of stable layered nitrides

Controlled synthesis of metastable materials away from equilibrium is of interest in materials chemistry. Thin-film deposition methods with rapid condensation of vapour precursors can readily synthesize metastable phases but often struggle to yield the thermodynamic ground state. Growing thermodynamically stable structures using kinetically limited synthesis methods is important for practical applications in electronics and energy conversion. Here, in this study, we reveal a synthesis pathway to thermodynamically stable, ordered layered ternary nitride materials, and discuss why disordered metastable intermediate phases tend to form. We show that starting from elemental vapour precursors leads to a 3D long-range-disordered MgMoN 2 thin-film metastable intermediate structure, with a layered short-range order that has a low-energy transformation barrier to the layered 2D-like stable structure. This synthesis approach is extended to ScTaN 2 , MgWN 2 and MgTa 2 N 3 , and may lead to the synthesis of other layered nitride thin films with unique semiconducting and quantum properties.

36 MATERIALS SCIENCE↗

Discovery of hybrid chemical synthesis pathways with DORAnet

Developing efficient tools for discovering novel synthesis pathways is essential to advance chemical production methods that maximize the use of resources and energy. We introduce DORAnet (Designing Optimal Reaction Avenues Network Enumeration Tool), an open-source computational framework that addresses key limitations in current computer-aided synthesis planning (CASP) tools. DORAnet integrates both chemical/chemocatalytic (i.e., non-enzymatic) and enzymatic transformations, enabling the discovery of hybrid synthesis pathways. With 390 expert-curated chemical/chemocatalytic reaction rules and 3606 enzymatic rules derived from MetaCyc, it provides extensive flexibility for synthetic chemists and biotechnologists. The framework features customizable network expansion strategies, advanced filtering, and pathway search, ranking, and visualization tools. Validated against known reaction data, DORAnet successfully identified both established and novel synthesis routes for key industrial chemicals. In a case study involving 51 high-volume targets, DORAnet frequently ranked known commercial pathways among the top three results, demonstrating its practical relevance and ranking accuracy, while also uncovering numerous alternative (hybrid) synthesis pathways that were highly ranked.

37 INORGANIC, ORGANIC, PHYSICAL, AND ANALYTICAL CH↗