Search NASASearch

SEARCH · Search NASA

Results for “STALLING”

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 37 records · Page 2

Improved pressure-gradient sensor for the prediction of separation onset in RANS models

Here, we improve upon two key aspects of the Menter shear stress transport (SST) turbulence model: (1) We propose a more robust adverse pressure gradient sensor based on the strength of the pressure gradient in the direction of the local mean flow; (2) We propose two alternative eddy viscosity models to be used in the adverse pressure gradient regions identified by our sensor. Direct numerical simulations of the Boeing Gaussian bump are used to identify the terms in the baseline SST model that need correction, and a posteriori Reynolds-averaged Navier-Stokes calculations are used to calibrate coefficient values, leading to a model that is both physics driven and data informed. The two sensor-equipped models are applied to two thick airfoils representative of modern wind turbine applications, the FFA-W3-301 and the DU00-W-212. The proposed models improve the prediction of stall (onset of separation) with respect to the prediction of the baseline SST model.

17 WIND ENERGY

Numerical challenges in modeling gravothermal collapse in Self-Interacting Dark Matter halos

When dark matter has a large cross section for self scattering, halos can undergo a process known as gravothermal core collapse, where the inner core rapidly increases in density and temperature. To date, several methods have been used to implement Self-Interacting Dark Matter (SIDM) in N-body codes, but there has been no systematic study of these different methods or their accuracy in the core-collapse phase. In this paper, we compare three different numerical implementations of SIDM, including the standard methods from the GIZMO and Arepo codes, by simulating idealized dwarf halos undergoing significant dark matter self interactions (σ/m = 50 cm 2 /g). When simulating these halos, we also vary the mass resolution, time-stepping criteria, and gravitational force-softening scheme. The various SIDM methods lead to distinct differences in a halo's evolution during the core-collapse phase, as each results in spurious scattering rate differences and energy gains/losses. The use of adaptive force softening for gravity can lead to numerical heating that artificially accelerates core collapse, while an insufficiently small simulation time step can cause core evolution to stall or completely reverse. Additionally, particle numbers must be large enough to ensure that the simulated halos are not sensitive to noise in the initial conditions. Even for the highest-resolution simulations tested in this study (10 6 particles per halo), we find that variations of order 10% in collapse time are still present. Here, the results of this work underscore the sensitivity of SIDM modeling on the choice of numerical implementation and motivate a careful study of how these results generalize to halos in a cosmological context.

72 PHYSICS OF ELEMENTARY PARTICLES AND FIELDS

EEPD1 evolved a unique DNA clamping dimer protecting reversed replication forks

Exonuclease/endonuclease/phosphatase (EEP)-fold hydrolases are canonically monomeric phosphodiesterases exemplified by APE1, DNase I, and TDP2 nucleases. While EEP family domain containing protein 1 (EEPD1) acts in DNA stress responses, its proposed nuclease activities are enigmatic. Here, we integrate hybrid structural methods, evolution, biochemistry, cancer genomics, plus molecular and cell biology to define EEPD1 structure, assembly, and function at stalled DNA replication forks. Results imply EEPD1 surprisingly requires both unique EEP domain dimer and distinctive tandem Helix-hairpin-Helix [(HhH) 2 ] domains to clamp double-stranded (ds) DNA at reversed DNA replication forks for fork protection. Small-angle X-ray Scattering (SAXS), crystal, and cryo-EM structures unveil an unprecedented tryptophan handshake dimer, conserved interface di-Trp-Pro pocket, and adjustable “wrist” enabling an open-closed conformational switch. EEPD1 dimer cooperatively binds complex dsDNA replication fork intermediates but alone lacks nuclease activity due to loss of key EEP catalytic residues during Metazoan evolution and atmospheric oxygen buildup. Instead, EEPD1 prevents nucleolytic degradation of reversed replication forks by MRE11. Furthermore, cancer bioinformatics support oxidative damage-dependent EEPD1 association as a significant modulator of overall patient survival. Collective findings uncover unexpected EEP dimer and fork protection function in clamping, not cleaving, reversed replication forks for metazoan oxidative stress responses controlling genome stability and cancer outcomes.

Shen, Runze [Univ. of Texas, Houston, TX (United S

Sparsomycin inhibits translation through a conserved mechanism across all domains of life

Abstract Sparsomycin (SPA) is a broad-spectrum inhibitor of protein synthesis with activity across all three domains of life. Although SPA has long been known to target the ribosomal peptidyl transferase center (PTC), previous structural studies suggested that SPA binds differently to bacterial ribosomes compared to their archaeal and eukaryotic counterparts—an unexpected conclusion given the high evolutionary conservation of the ribosomal catalytic center. Here, we show that SPA inhibits a majority of elongation-competent bacterial ribosomal complexes and present X-ray crystal structures of Thermus thermophilus 70S ribosomes stalled by SPA at the initiation and early elongation stages of translation. These structures reveal that SPA binds to the bacterial ribosome in a manner essentially identical to that observed in archaeal and eukaryotic ribosomes, establishing a unified structural mechanism of SPA action across all domains of life. In this conserved binding mode, SPA occupies the A-site cleft of the PTC and forms an extensive network of interactions with universally conserved ribosomal RNA nucleotides and the CCA-end of the P-site transfer RNA (tRNA), thereby stabilizing the peptidyl-tRNA substrate while sterically blocking accommodation of an incoming aminoacyl-tRNA. By clarifying the mode of action of SPA on the bacterial ribosome, our work provides a structural framework for the rational design of SPA derivatives with improved potency and bacterial specificity.

Paranjpe, Madhura N [Department of Biological Scie

Graph Analytics on Jellyfish topology

Because large unstructured datasets is important for many science domains, distributed graph analytics is critical to many scientists. Unfortunately, obtaining scaling and performance for irregular communication is challenging because contemporary network interconnects are primarily designed to maximize bandwidths of fixed-neighborhoods large-message exchanges (e.g., stencils). Although there is no consensus on the “best” network topologies for irregular communication, unstructured graph-based interconnects can be more suitable. We analyze three popular graph workloads – clustering, pattern enumeration, and traversal — on comparable networks (in terms of resources and costs) constructed from Jellyfish Random Regular, Dragonfly and Fat tree topologies, varying the routing algorithms. Using packet-level simulations, we demonstrate up to 60% improvement in communication time with Jellyfish due to diversity of the short paths between arbitrary endpoints, which can reduce overall network stalls and congestion.

Graph Analytics, network topology, interconnect, H

DEDUPKV: A Space-Efficient and High-Performance Key-Value Store via Fine-Grained Deduplication

Log-Structured Merge Tree (LSM-tree) based key-value stores excel in write-intensive environments but suffer from data duplication, consuming up to 49% of storage space in LSM-tree-based key-value store deployments. Traditional solutions like compression and coarse-grained file system-level deduplication introduce overhead or have limited effectiveness. In this study, we propose DedupKV, a fine-grained deduplication framework tailored for LSM-tree, maximizing data reduction efficiency while minimizing write stalls and read overheads. DedupKV features three key innovations: (1) FLUSH-integrated inline deduplication, which removes duplicates during memory-to-storage writes; (2) WAL file-based offline deduplication, repurposing write-ahead logs to avoid double writes; and (3) elastic execution, dynamically balancing inline and offline deduplication based on memory pressure and workload intensity. Additionally, dynamic granularity management reduces deduplication metadata overhead. We implemented these four ideas in RocksDB for the first time and conducted experiments in a Linux environment. Our evaluation shows that WAL file-based offline deduplication and DedupKV outperform BlobDB by 33% and 23%, respectively, in write-heavy workloads, while reducing write amplification by 1.2 ×, 2 ×, and 1.6 × for real KV datasets.

Jamil, Safdar [Sogang University]

Chromosome duplication causes premature aging via defects in ribosome quality control

Down syndrome, caused by an extra copy of Chromosome 21, causes lifelong problems. One of the most common phenotypes among people with Down syndrome is premature aging, including early tissue decline, neurodegeneration, and shortened life span. Yet the reasons for premature systemic aging are a mystery and difficult to study in humans. Here we show that chromosome amplification in wild yeast also produces premature aging and shortens life span. Chromosome duplication disrupts nutrient-induced cell-cycle arrest, entry into quiescence, and cellular health during chronological aging, across genetic background and independent of which chromosome is amplified. Using a genomic screen, we discovered that these defects are due in part to aneuploidy-induced dysfunction in Ribosome Quality Control (RQC). We show that aneuploids entering quiescence display aberrant ribosome profiles, accumulate RQC intermediates, and harbor an increased load of protein aggregates compared to euploid cells. Although they maintain proteasome activity, aneuploids also show signs of ubiquitin dysregulation and sequestration into foci. Remarkably, inducing ribosome stalling in euploids produces similar aging phenotypes, while up-regulating limiting RQC subunits or poly-ubiquitin alleviates many of the aneuploid defects. We propose that the increased translational load caused by having too many mRNAs accelerates a decline in translational fidelity, contributing to premature aging.

Aneuploidy

Improved Beam Loss Accounting with Fast Data Acquisition (DAQ) Chassis

Identifying the source of beam loss events in the CE-BAF accelerator can be a challenging task. However, with our new prototype system, this task becomes more effi-cient. The system, developed in the fall of 2022, utilizes a dispersive beam position monitor (BPM) and the exist-ing switched electrode electronics BPM hardware. Previ-ously a commercial off-the-shelf data acquisition (DAQ) system was employed to capture BPM wire signals at a sample rate of 20 kS/s. The fast shutdown signal triggered the system, which disables the beam at the injector. Analysis of beam position and energy variation before a beam loss event was used to determine if the beam loss event was associated with an energy transient. The proto-type system, implemented using National Instruments hardware and LabVIEW® software, relied on a software trigger. Manual post-processing was required to ascertain whether the fault was due to an un-tripped cavity with a gradient or phase transient. This work focuses on deploying a Fast DAQ Chassis to monitor BPM hardware in real time and during beam loss events. This system was originally developed and in-stalled in CEBAF to monitor the time-domain RF control signals in the legacy analog RF systems. This technology was leveraged to also monitor BPM signals. As the new system employs a hardware trigger, developing tools to automatically identify faults linked to energy transients unrelated to cavity faults will be straightforward. This paper will discuss the project's initial updates, underlin-ing the crucial role of each member of our team in this achievement

Tiskumara, J.

Community Solar and Community Solar+Storage: A Roadmap of Barriers and Solutions for Commercial Systems in NYC

Sustainable CUNY worked with decision makers and subject matter experts (SME's) to identify the barriers to and solutions for advancing commercial Community Solar (CS) and CS+Storage (CS+S) in urban areas. This roadmap captures the key challenges and solutions identified by New York City (NYC) stakeholders, including the Real Estate Board of New York (REBNY), through a collaborative process. Solar, as well as storage, are among the fastest growing energy segments in the United States, with CS, also known as Community Distributed Generation (CDG), gaining popularity with those who may not own or have access to a viable roof. Urban areas like NYC, which have a large population of renters, are particularly well suited for CS projects where credits from the power produced by a large remote installation are offered on a subscription basis to residents or businesses in the community. However, CS and CS+S projects have stalled at the doorstep of many cities. Host site owners, particularly those with large rooftops, have been slow to commit to installing CS due to competing rooftop usage and programs, limited knowledge about incentives, lack of economic data, and a complicated implementation process.

14 SOLAR ENERGY

2024 OES-Environmental 2024 State of the Science Report, Chapter 6: Strategies to Aid Consenting Processes for Marine Renewable Energy

While the marine renewable energy (MRE) industry has made positive strides in the past decade, challenges remain that stall forward progress, scaling up, and commercialization. For MRE to provide a viable solution to address the effects of climate change and achieve sustainable development and renewable energy goals, identifying and understanding barriers and opportunities to deployment is key. Barriers to date have included long consenting timelines, costly in-depth baseline data collection and monitoring requirements, and hesitancy in some countries to approve device and array deployments (Copping & Hemery 2020; Kramer et al. 2020). Some of the key drivers behind these barriers are 1) uncertainty about potential effects of MRE on marine animals, habitats, and the environment; 2) lack of familiarity with MRE technologies; or 3) challenges accessing available scientific information (Copping et al. 2020a).

16 TIDAL AND WAVE POWER

Cyber-Physical Simulation of the Cold Startup of Solid Oxide Fuel Cell – Gas Turbine (SOFC-GT) Hybrid Systems

This work introduces experimental studies for the cold startup process (CPS) of the SOFC-GT hybrid system using the cyber-physical simulation approach. The physical gas turbine is coupled with a cyber-physical SOFC stack, which is represented using the integration of a real time dynamic SOFC model with physical components (e.g., pressure chamber, natural gas burner, etc.). Different ramp rates of the turbine speed were tested out during the startup processes. Bypass valves were also used to manipulate the airflow during SOFC-GT hybrid system start-up process. Different ramp rates enable the rapid start-up of the turbine to avoid surge and stall, meanwhile enable acceptable warm rate of the fuel cell stack without damaging the cell material. CPS can enable dynamic characterizations of highly integrated systems at lower cost.

Zhou, Nana

Open-Source Offshore Airfoil Summary (V.1.0)

The Open-Source Offshore (OSO) airfoils have been developed for research purposes for offshore wind turbines, offering a set of airfoils that align with modern turbine design requirements and industry design practices without proprietary constraints on research use. The eventual airfoil family will target the IEA 22 MW reference wind turbine, which was originally developed with the FFA airfoils. The two airfoils summarized in Table 1 (OSO-21-WT1 and OSO-30-WT1) started development as part of a family of airfoils being designed to target the IEA 22 MW wind turbine. The criteria used to design these airfoils are summarized in Table 1, which aim to encapsulate requirements of modern airfoils for offshore wind turbine applications, and were developed with feedback from industry and research experts. The airfoils were designed using XFOIL and candidate airfoils were then analyzed in RFOIL, which is considered more accurate than XFoil for high lift predictions of thicker airfoils. The design process for a preliminary family of airfoils is available, including a more detailed explanation of the design requirements and metrics similar to those used for these airfoils. Most of the design criteria are met for these two airfoils, with two exceptions. For both airfoils, the L/D Roughness Loss metric is exceeded (42% > 40% goal) and the desired lift coefficient margin over the design value (“CL_Margin”) was moderately exceeded (0.43 > 0.3) while smooth-stall characteristics (computed) were achieved. Note that all of the metrics were computed using RFOIL, and like other new airfoils, these will need to be experimentally validated at a range of Reynolds numbers. The airfoil coordinates will be shared publicly on Sadia National Laboratories’ public Github repository:

17 WIND ENERGY

Control Oriented Models for Co-Design: Technical Overview of MT HVDC, MVDC, and Solid State Transformer Building Blocks

The electric power system is shifting toward a power electronics–enabled grid, where converter based “building blocks” (e.g., high voltage direct current (HVDC) links, multi terminal HVDC (MT HVDC) networks, medium voltage DC (MVDC) links, and solid state transformers (SSTs)) provide fast, precise control of power flows, voltage, and frequency. This report develops and applies publicly shareable electromagnetic transient (EMT) and phasor models to examine how such building blocks can be composed and coordinated to support offshore wind integration, inter area transfers, feeder support, and resilience. Section 2 documents a modular multilevel converter (MMC)–based MT HVDC modeling framework and two use cases: a compact WSCC/IEEE 9 bus test system and a 240 bus “mini WECC” case with five offshore wind plants (OWFs). Phasor to EMT transfer, initialization, and sanity checks are summarized, and neutral demonstrations of normal and contingency operation are reported. Section 3 frames the problem of wind plant inertial frequency response (IFR): shaping energy release and recovery to improve nadir while avoiding aerodynamic stall; representative simulations illustrate the issues without disclosing proprietary control. Section 4 develops MVDC concepts through an IEEE 16 bus loop and an Olympic Peninsula case study that compares AC vs. MVDC corridors and shows how feeder headroom can be pooled via DC couplers. Section 5 surveys SST architectures and identifies a gap: scalable, communication free coordination of multiple SSTs for islanded feeder networks. Across the report, novel methods and configurations under separate publication and IP review are not disclosed; only topic oriented, replicable setups and non proprietary results are shown. These models and use cases are intended as foundations for future publications and co design studies on architecture, control, and coordination of PE enabled grids.

24 POWER TRANSMISSION AND DISTRIBUTION

T&D LIBRA: Simulation Framework for Transmission and Distribution Load and IBR Assessment

This paper introduces T&D LIBRA, a HELICS-based dynamic co-simulation framework designed for transmission and distribution (T&D) load and inverter-based resource assessment. This framework is designed to model interactions between single-phase induction motors (i.e., Motor-D), distributed energy resources (DERs) and the transmission network, emphasizing system stability during fault conditions. The primary objective of this research is to study the fault-induced delayed voltage recovery (FIDVR) behavior of the T&D networks using the co-simulation framework and to compare the results with conventional PSS/E only simulations. Simulations are validated using T&D co-simulations with a single distribution node and the IEEE 123-bus distribution test case. The co-simulation results demonstrate the value of using T&D co-simulations to capture motor stalling, DER tripping and other sources of voltage diversity on distribution networks.

24 POWER TRANSMISSION AND DISTRIBUTION

Fuel-Cladding Eutectic Study of Legacy Fast Flux Test Facility (FFTF) MFF HT9/U-10Zr Metallic Fuel

This report presents the first systematic investigation of fuel-cladding eutectic interaction (FCEI) in irradiated HT9/U-10Zr metallic fuel from the Fast Flux Test Facility (FFTF) Materials Fuels Form (MFF) program, using differential scanning calorimetry (DSC) coupled with scanning electron microscopy (SEM) and energy dispersive X-ray spectroscopy (EDS). Two irradiated fuel cross-sections, MNT07H (9.5 at% burnup, x/L = 0.78) and MNT08H (7.0 at% burnup, x/L = 0.93), were subjected to three successive isothermal annealing rounds (R1–R3) at 820°C for 20 minutes each, yielding a cumulative transient duration of one hour. This study directly addresses a recognized gap in the existing FCEI database, which previously lacked irradiated HT9/U-10Zr data at burnup levels above 8 at%. Two principal findings emerge from the study. First, for both samples, FCEI remained spatially confined within the pre-existing fuel-cladding chemical interaction (FCCI) zone boundaries after R3, with no measurable eutectic penetration into unaffected cladding beyond the original FCCI layer. This self-limiting behavior is consistent with historical Fuel Behavior Test Apparatus (FBTA) results and is attributed to the near-eutectic phase composition of the FCCI zone, which rapidly absorb the available eutectic-forming constituents and then stall penetration once the FCCI zone is consumed. A comparison with unirradiated surrogate data further supports this mechanism: whereas a U–34 at.% Fe sample would be expected to show ~176 µm of iron penetration under comparable conditions, the irradiated samples exhibited only ~20 µm, a discrepancy attributed to irradiation-induced interfacial porosity and pre-existing FCCI composition gradients. Second, for MNT08H, FCEI was observed exclusively on the half of the cladding circumference where pre-existing steady-state FCCI was present, with no detectable FCEI on the opposite half. Three hypotheses are proposed to explain this asymmetry: the inhibiting role of a zirconium-rich rind at the fuel-cladding interface; the chemical sequestration of iron by redistributed zirconium within the fuel matrix; and the persistence of fuel-cladding gaps on the FCEI-free half that preclude direct contact. All three hypotheses require further experimental investigation. The results extend the empirical FCEI database into higher-burnup territory and demonstrate the viability of DSC-based testing as a substitute for the no-longer-available FBTA apparatus. Future work will include additional cross-section testing, compilation of the full FCEI dataset, model evaluation, and DSC testing of ternary fuel compositions to broaden the experimental basis for safety assessment of sodium-cooled fast reactor systems.

11 - NUCLEAR FUEL CYCLE AND FUEL MATERIALS

Planetesimal Impact Vapor Plumes and Nebular Shocks Form Chondritic Mixtures

The origin of chondrules and the chondritic sedimentary rocks that dominate the meteoritic record is a long-standing problem in planetary science. Here, we develop a physical model for the formation of chondritic mixtures as an outcome of vaporizing collisions between planetesimals that were dynamically excited by the growth and migration of planets. We present calculations of nebular shock waves generated by impact vapor plumes and focus on aspects of the plume interaction with the nebular gas and dust that have been neglected in previous studies of impact ejecta. We find that when water dominates the vapor, the plumes are relatively cool. However, the plume expansion is supersonic and can drive strong shock waves in the dusty nebular gas. Portions of these nebular shock fronts initially melt nebular dust, forming chondrules that are coupled to the moving front. As the shock front expands and cools, the chondrules solidify, while the shock front entrains additional dust. Eventually, the plume expansion stalls and then hydrodynamically collapses, turbulently mixing variably processed dust and size-sorted chondrules. For probable impact parameters and nebular conditions during giant planet growth and migration, the impact-generated mixtures have characteristics that span the range observed in chondritic meteorites, providing an environment for rapid formation of chondritic assemblages after chondrule formation. Our impact vapor and nebular shocks model, named the IVANS model, links chondrule formation to the overall context of planet formation and provides a framework for interpreting the detailed chronological and geochemical record contained in chondritic meteorites.

79 ASTRONOMY AND ASTROPHYSICS

Do Piperonyl Butoxide Long-Lasting Insecticide Treated Nets Provide Additional Protection Against Malaria Infections Compared with Conventional Nets in an Operational Setting in Western Kenya?

Malaria control in sub-Saharan Africa has stagnated despite widespread adoption of control measures such as long-lasting insecticidal nets (LLINs). Progress has stalled, in part, because of pyrethroid insecticide resistance, driving the need for retooling to increase the effectiveness of bed nets. Consequently, LLINs have been treated with the chemical synergist piperonyl butoxide (PBO). Piperonyl butoxide LLINs have been shown to be efficacious in controlled settings; however, their effectiveness in real-world settings warrants investigation. In Bungoma County, Western Kenya, a cohort of 768 participants was followed from June 2017 to December 2023 via active and passive surveillance. Household visits were conducted monthly, during which LLIN use for nets distributed in 2017 and 2021 was recorded, and symptomatic malaria cases were identified using rapid diagnostic tests (RDTs). The comparative effectiveness of PBO versus conventional LLINs was assessed in terms of malaria infections. A multilevel logistic regression model was fit with monthly RDT results as the dependent variable. The study results indicate that PBO LLINs provide greater protection against malaria at the individual level than conventional LLINs (odds ratio: 0.70; 95% CI: 0.47–1.03), although the findings were not statistically significant. The added protection against malaria infections provided by PBO LLINs compared with conventional LLINs observed in the current study aligns with findings from most previous studies, although this finding was not statistically significant. In areas with documented pyrethroid resistance, the use of LLINs with an added synergist, such as PBO, can provide additional protection against malaria infections (compared with pyrethroid-only LLINs) and should be considered for scaled-up scenarios despite the additional cost.

60 APPLIED LIFE SCIENCES

Aneuploidy induces premature aging in yeast due to defects in Ribosome Quality Control [RNASeqData]

Premature aging is a hallmark of Down syndrome, caused by trisomy of human chromosome 21; but the reason is unclear and difficult to study in humans. We used an aneuploid model in wild yeast to show that chromosome amplification disrupts nutrient-induced cell-cycle arrest, quiescence entry, and healthy aging, across genetic backgrounds and amplified chromosomes. We discovered that these defects are due in part to aneuploidy-induced dysfunction in Ribosome Quality Control (RQC). Aneuploids entering quiescence display aberrant ribosome profiles, accumulate RQC intermediates, and harbor an increased load of protein aggregates. Although they have normal proteasome capacity, aneuploids show signs of ubiquitin dysregulation, which impacts cyclin abundance to disrupt arrest. Remarkably, inducing ribosome stalling in euploids produces similar aberrations, while up-regulating limiting RQC subunits or proteins in ubiquitin metabolism alleviates many of the aneuploid defects. Our results raise major implications for other aneuploidy disorders including Down syndrome.

aneuploidy