Search NASASearch

SEARCH · Search NASA

Results for “Knowledge representation”

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.

127 records · Page 6

General Purpose Data-Driven System Monitoring for Space Operations

Modern space propulsion and exploration system designs are becoming increasingly sophisticated and complex. Determining the health state of these systems using traditional methods is becoming more difficult as the number of sensors and component interactions grows. Data-driven monitoring techniques have been developed to address these issues by analyzing system operations data to automatically characterize normal system behavior. The Inductive Monitoring System (IMS) is a data-driven system health monitoring software tool that has been successfully applied to several aerospace applications. IMS uses a data mining technique called clustering to analyze archived system data and characterize normal interactions between parameters. This characterization, or model, of nominal operation is stored in a knowledge base that can be used for real-time system monitoring or for analysis of archived events. Ongoing and developing IMS space operations applications include International Space Station flight control, spacecraft vehicle system health management, launch vehicle ground operations, and fleet supportability. As a common thread of discussion this paper will employ the evolution of the IMS data-driven technique as related to several Integrated Systems Health Management (ISHM) elements. Thematically, the projects listed will be used as case studies. The maturation of IMS via projects where it has been deployed or is currently being integrated to aid in fault detection will be described. The paper will also explain how IMS can be used to complement a suite of other ISHM tools, providing initial fault detection support for diagnosis and recovery

Space Propulsion

Detection of visible-wavelength aurora on Mars

Mars hosts various auroral processes despite the planet’s tenuous atmosphere and lack of a global magnetic field. To date, all aurora observations have been at ultraviolet wavelengths from orbit. We describe the discovery of green visible-wavelength aurora, originating from the atomic oxygen line at 557.7 nanometers, detected with the SuperCam and Mastcam-Z instruments on the Mars 2020 Perseverance rover. Near–real-time simulations of a Mars-directed coronal mass ejection (CME) provided sufficient lead-time to schedule an observation with the rover. The emission was observed 3 days after the CME eruption, suggesting that the aurora was induced by particles accelerated by the moving shock front. To our knowledge, detection of aurora from a planetary surface other than Earth has never been reported, nor has visible aurora been observed at Mars. This detection demonstrates that auroral forecasting at Mars is possible, and that during events with higher particle precipitation, or under less dusty atmospheric conditions, aurorae will be visible to future astronauts.

Science & Technology - Other Topics

Towards an Improved Understanding of the Antarctic Coastal Zone and Its Contribution to Future Global Sea Level

Understanding the coastal zone of the Antarctic Ice Sheet (AIS), where it interacts with the Southern Ocean and warmer air masses, is crucial for predicting Antarctica's influence on the global climate and sea level. This region has multiple tipping mechanisms that could trigger large, rapid, and potentially irreversible changes in the AIS, the Southern Ocean and their global connections in the coming centuries. The AIS remains the largest source of uncertainty in future sea-level projections. Bed topography beneath the ice shelves and the coastal ice sheet is not yet well documented, and is a major source of this uncertainty. This review assesses current knowledge of the coastal zone and highlights methods to investigate it, including aerogeophysical surveys, ground- and ship-based measurements, satellite observations, and computer modeling. An ensemble analysis of published bed topography data sets identifies significant data gaps and their regional distribution, framed in the context of current ice-sheet behavior and potential instability. We propose scientific priorities and guidelines for future aerogeophysical surveys, advocating for a comprehensive, coordinated international effort to build a next-generation data set of Antarctic bed properties. Such an initiative would significantly advance understanding of the role of coastal processes in ice-sheet dynamics, reducing uncertainties in sea-level rise projections and improving predictions of future ocean and climate changes.

Kenichi Matsuoka

The effect of dogbone sample size in the tensile testing of TATB-based plastic‑bonded explosive materials

Mechanical properties are of interest for many plastic‑bonded explosive (PBX) materials with tensile properties being of particular interest. Direct tensile measurements using dogbone-shaped samples are considered the gold standard, but they are fairly large, making testing more costly and less desirable from a safety perspective. We investigated whether the measured tensile strength depends on the dogbone specimen size, which to our knowledge, has not been reported in the literature for PBX materials. Understanding this should inform the feasibility of employing smaller samples and how sample size should be considered when comparing PBX dogbone values in the literature. The TATB-based PBX dogbone sample size was varied by (a) scaling all dimensions proportionally and (b) varying only the length of the samples. It was observed that the measured tensile peak stress (strength) was a function of the sample size, and was more dependent on the diameter (cross-sectional area) than the length of the samples. Since peak stress is calculated as peak force normalized to the diameter of the sample, one might not expect an explicit diameter dependence for the peak stress. Therefore, these results suggest there may be an additional strengthening effect as the sample diameter is increased.

37 INORGANIC, ORGANIC, PHYSICAL, AND ANALYTICAL CH

A review of United States energy-only generator interconnection service policy and considerations for reform

Grid interconnection has emerged as a significant obstacle to the development of new electricity resources. There is growing interest in energy-only interconnection, which is an interconnection service option meant to allow the interconnection of new generators without ensuring their energy deliverability during all hours through the transmission system to customers. This approach potentially avoids upfront congestion-related transmission upgrades but could increase curtailment risk. Interest in energy-only interconnection is shaped by incomplete understanding of how interconnection policy functions in different jurisdictions, a knowledge gap that makes it difficult to determine how energy-only interconnection might be better used or re-designed. In this paper, we provide a regulatory review of energy-only interconnection in U.S. interconnection policy and practice, identifying jurisdictions in which rules are close to -or farther from-the theoretical concept of energy-only interconnection service. We find substantial jurisdictional differences in how energy-only interconnection is implemented, driven by differences in resource adequacy frameworks, real-time transmission operations, and state-level procurement practices. U.S. regulators have preferred local jurisdictional flexibility over federal prescription of interconnection study methods and procedures, which also contributes to differences among regions. Such findings raise fundamental questions about whether competition policies in electricity markets should extend beyond spot energy markets and into more prescriptive guidelines around interconnection rules and market entry. This paper sheds light on tensions that energy-only interconnection raises in allowing generators to access the transmission system on an as available basis and discusses how controlling thresholds for congestion-related network upgrades may be a barrier to electricity market entry.

Gorman, Will

Improving the Performance of NEML2 with Modern Graph Compilation Backends

NEML2 vectorizes constitutive-model evaluation for large-scale multiphysics simulation, using PyTorch as its tensor backend so that a batch of material-point updates runs on CPU or GPU through a single implementation. In the two prior reports in this series it was a C++-native library, deployed through TorchScript tracing and just-in-time (JIT) compilation; it has since been rewritten from the ground up into a Python-native library deployed through Ahead-of-Time Inductor (AOTInductor), a modern PyTorch graph-compilation backend. The rewrite is driven by a persistent tension, not a language preference: NEML2 composes constitutive models at runtime from a registry of small, independently-authored pieces, and that flexibility is difficult to reconcile with the compile-time knowledge an efficient GPU kernel needs. This report documents the rewrite and the investment that accompanied it: the AOTInductor export pipeline that turns a Python-authored model into a portable, Python-free compiled artifact loadable from pure C++; the eager and compiled runtimes and the new implicit solver layer built on them; a head-to-head benchmark of legacy JIT against AOTInductor; the physics-model catalog and its worked examples; the developer tooling; and the corresponding overhaul of MOOSE’s NEML2 integration that lets MOOSE consume it. A central objective is to examine whether modern PyTorch graph-compilation backends are effective for MOOSE GPU integration. The benchmark answers directly: AOTInductor outperforms legacy JIT on every GPU scenario measured, by 1.0–4.5×. Modern graph-compilation backends are effective for MOOSE GPU integration, and AOTInductor specifically – not compilation in the abstract – is why.

Hu, Gary (Tianchen) [Argonne National Laboratory (

Review of European Microgravity Measurements

AA In a French/Russion cooperation, CNES developed a microgravity detection system for analyzing the Mir space station micro-g-environment for the first time. European efforts to characterize the microgravity (1/9) environment within a space laboratory began in the late seventies with the design of the First Spacelab Mission SL-1. Its Material Science Double Rack was the first payload element to carry its own tri-axial acceleration package. Even though incapable for any frequency analysis, the data provided a wealth of novel information for optimal experiment and hardware design and operations for missions to come. Theoretical investigations under ESA contract demonstrated the significance of the detailed knowledge of micro-g data for a thorough experiment analysis. They especially revealed the high sensitivity of numerous phenomena to low frequency acceleration. Accordingly, the payloads of the Spacelab missions D-1 and D-2 were furnished with state-of-the-art detection systems to ensure frequency analysis between 0.1 and 100 Hz. The Microgravity Measurement Assembly (MMA) of D-2 was a centralized system comprising fixed installed as well as mobile tri-axial packages showing real-time data processing and transmission to ground. ESA's free flyer EURECA carried a system for continuous measurement over the entire mission. All EURECA subsystems and experimental facilities had to meet tough requirements defining the upper acceleration limits. In a French/Russion cooperation, CNES developed a mi crogravity detection system for analyzing the Mir space station micro-g-environment for the first time. An approach to get access to low frequency acceleration between 0 and 0.02 Hz will be realized by QSAM (Quasi-steady Acceleration Measurement) on IML-2, complementary to the NASA system Spacelab Acceleration Measurement System SAMS. A second flight of QSAM is planned for the Russian free flyer FOTON.

H Hamacher

Dimensional Reduction for Sampled Priors and Application to Photometric Redshift Distributions

A typical Bayesian inference on the values of some parameters of interest q from some data D involves running a Markov Chain (MC) to sample from the posterior $p$($q$,$n$|$D$) $\propto$ $\mathcal{L}$($D$|$q$,$n$)$p$(q)$p$($n$), where n are some nuisance parameters with a separable prior. In some cases, the nuisance parameters are high-dimensional, and their prior p(n) is itself defined only by a set of samples that have been drawn from some other MC. The MC for the posterior will typically require evaluation of p(n) at arbitrary values of n, i.e., one needs to provide a density estimator over the full n space from the provided samples. But the high dimensionality of n hinders both the density estimation and the efficiency of the MC for the posterior. We describe a solution to this problem: a linear compression of the n space into a much lower-dimensional space u, which projects away directions in n space that cannot appreciably alter $\mathcal{L}$. The algorithm for doing so is a slight modification to principal components analysis, and is less restrictive on p(n) than other proposed solutions to this issue. We demonstrate this “mode projection” technique using the analysis of 2-point correlation functions of weak lensing fields and galaxy density in the Dark Energy Survey, where n is a binned representation of the redshift distribution n(z) of the galaxies.

79 ASTRONOMY AND ASTROPHYSICS

Improving Marine Energy Production Through Commercialization of a Low Cost, Drag-Reducing Slippery Coating (CRADA 679 Abstract)

Marine energy capture systems offer great promise for providing clean energy, but they operate in a challenging and dynamic environment and must be optimized to the highest extent possible. Computational studies predict that drag reduction on marine energy and blue economy systems will result in meaningful improvements in energy efficiency. Based on extensive coating experience, PNNL is proposing to bring to market a new drag-reducing coating called Superhydrophobic Lubricant-Infused Drag-Efficient Coating – SLIDE-Coat. PNNL has a deep knowledge base regarding this class of slippery coatings, and we have a group of enthusiastic industry partners who have committed to partnering, conducting field testing, and providing well over 50% cost share. In addition to validating the technology, the team will create a commercialization roadmap to ensure the commercial success of the technology after the government-sponsored two-year program is complete. The main technical goal is to design, manufacture, and experimentally validate a new coating that can reduce hydrodynamic skin friction drag by 20%. The main commercialization goal is to develop a roadmap that identifies activities needed to complete SLIDE-Coat’s development after the conclusion of this project. Year 1 will focus on adaptation and modification of the existing SLIC coating system to optimize drag reduction and assessment and quantification of drag reduction on relevant materials in a laboratory setting. Year 2 will focus on optimizing and demonstrating drag reduction with preferred coatings. The manufacturability, ease of application, adhesion to relevant surfaces, and consistency will be assessed. Quantification of drag reduction on prototype materials in a relevant marine field setting will be executed.

16 TIDAL AND WAVE POWER

Equilibrium and non-equilibrium effects in high pressure phase transformations of carbon

The behavior of carbon in the range 1–100 GPa and 1–10 kK is central to problems in planetary interiors, inertial confinement fusion targets, and high-pressure synthesis of carbon-based materials, but experiments in this regime are difficult and often provide only indirect constraints on phase behavior. As a result, phase boundary loci, structure, and limits of metastability at high pressure remain uncertain. In this work, machine-learning enhanced atomistic simulations are used to address this knowledge gap. We determine the melt line up to 100 GPa, the graphite-diamond phase boundary up to the melt line, and analyze structure of the coexisting phases. We show that the coexisting liquid evolves smoothly with pressure without evidence for a first-order liquid–liquid transition. Orientation-resolved graphite melting simulations indicate that basal-plane interfaces develop a dewetting layer and undergo layer-by-layer melting, producing kinetic hysteresis and an apparent orientation dependence of the melt line. Non-equilibrium quenches from the melt are used to construct a kinetically limiting graphite–diamond phase boundary for rapid quenches from above the melt line, and show that graphite is metastable at pressures of up to ≈ 25 GPa. These results provide bounds on equilibrium and metastable behavior in carbon relevant for interpreting high-pressure experiments and for designing synthesis pathways to specific carbon microstructures.

Lyu, Yanjun [Department of Materials Science and E

Direct Measurement of Cl − Activity in Metal Chloride Molten Salts using a Cl 2 /Cl − Electrode

Molten metal chloride salts are promising candidates for advanced heat transfer fluids in generation IV nuclear reactors and beyond. The activity of the chloride ion in the salt has a large influence on the redox characteristics of the corresponding molten salt. There exists a knowledge gap for the direct measurement of chlorobasicity (Lewis basicity) in molten-salt mixtures. Here, the focus of this work was to develop a Cl 2 /Cl − electrode for the direct measurement of chloride activity in molten metal-chloride salt mixtures. The LiCl–KCl eutectic system was utilized as the reference melt to determine the change in chloride ion activity as increasing concentrations of MgCl 2 are added to the LiCl–KCl eutectic working electrode. The results of the measurements indicated a reduction in chloride ion activity as the concentration of magnesium chloride increased, consistent with the complexation of free chlorides by Lewis acidic magnesium cationic species. The Temkin model was used to estimate the thermodynamic properties of MgCl 4 2− complex.

Chloride

Uncovering the linear boron environment in Na 3 BP 2 through solid-state 11 B NMR spectroscopy

Boron-based compounds exhibit a wide range of structural diversity, with potential applications spanning organic and inorganic chemistry. Herein, we focus on the characterization of the linear boron-phosphorus unit P═B═P in Na 3 BP 2 using solid-state nuclear magnetic resonance (ssNMR) spectroscopy and density functional theory (DFT) calculations. High-resolution 11 B ssNMR spectra were recorded at two fields, and key parameters such as chemical shift anisotropy (CSA), quadrupolar coupling constants (C Q ), and electric field gradient (EFG) tensors were extracted. The 11 B NMR results revealed a distinct chemical environment for the two-coordinate boron atom, with a CSA span (Ω) of 280 ppm and a C Q of 3.0 MHz. These values were further validated through periodic plane-wave DFT calculations, which showed good agreement with experimental results. The obtained spectral parameters are compared to other linear boron units, such as the BO 2 motif, providing a broader context for understanding boron coordination in inorganic compounds. This work expands the body of NMR knowledge on boron-containing materials, particularly for linear boron motifs. The findings contribute to the growing field of boron chemistry and its potential applications in advanced materials.

Porter, Andrew P. [Ames Laboratory (AMES), Ames, I

Heterotrophic respiration by soil microbes in a changing climate

Soil microbes strongly influence the soil organic carbon (SOC) pool, which globally stores ~2,000 PgC. Specifically, the balance between microbial heterotrophic respiration (R H ), which degrades SOC, and plant–microbe interactions that stabilize SOC determines whether terrestrial ecosystems are a net source or sink of CO 2 to the atmosphere. Here, in this Review, we evaluate how climate change alters these competing processes. R H is approximately half of total soil respiration, at ~50 PgC yr −1 , with 70% occurring in topsoils. Warming accelerates microbial metabolism, with a 10 °C temperature increase estimated to raise R H by ~50%, an effect that is particularly strong in Arctic soils. Warming also reduces soil moisture, further modulating R H , which responds nonlinearly to soil moisture, being limited by saturation and desiccation and meeting a maximum at intermediate levels. Consequently, R H is highly sensitive to future precipitation changes and drought. However, soil management strategies could enhance SOC stocks and persistence under climate change. Bacterial and fungal inoculants can promote SOC production and stabilization, while deep-rooting plants increase SOC inputs to deeper layers that experience lower R H . Agricultural practices and biochar amendments can also enhance SOC and reduce R H . Expanding field trials across regions, climates and soil types would improve empirical understanding of these responses and support better representation of R H in predictive models, enabling more accurate assessments of climate impacts on SOC storage.

Jansson, Janet K. [Pacific Northwest National Labo

Properties of a Ni19.5Pd30Ti50.5 High-Temperature Shape Memory Alloy in Tension and Compression

Potential applications involving high-temperature shape memory alloys have been growing in recent years. Even in those cases where promising new alloys have been identified, the knowledge base for such materials contains gaps crucial to their maturation and implementation in actuator and other applications. We begin to address this issue by characterizing the mechanical behavior of a Ni 19.5 Pd 30 Ti 50.5 high-temperature shape memory alloy in both uniaxial tension and compression at various temperatures. Differences in the isothermal uniaxial deformation behavior were most notable at test temperatures below the martensite finish temperature. The elastic modulus of the material was very dependent on strain level; therefore, dynamic Young’s Modulus was determined as a function of temperature by an impulse excitation technique. More importantly, the performance of a thermally activated actuator material is dependent on the work output of the alloy. Consequently, the strain-temperature response of the Ni 19.5 Pd 30 Ti 50.5 alloy under various loads was determined in both tension and compression and the specific work output calculated and compared in both loading conditions. It was found that the transformation strain and thus, the specific work output were similar regardless of the loading condition. Also, in both tension and compression, the strain-temperature loops determined under constant load conditions did not close due to the fact that the transformation strain during cooling was always larger than the transformation strain during heating. This was apparently the result of permanent plastic deformation of the martensite phase with each cycle. Consequently, before this alloy can be used under cyclic actuation conditions, modification of the microstructure or composition would be required to increase the resistance of the alloy to plastic deformation by slip.

High-Temperature Shape Memory Alloy

Influence of functional additives, fillers, and pigments on thermal and catalytic pyrolysis of polyethylene for waste plastic upcycling

Pyrolysis offers a relatively green and economical method to convert waste plastics into valuable chemicals and fuels without the need for harmful solvents, toxic chemicals, or costly high-pressure reactors. Despite its popularity among chemical upcycling technologies, industrial adoption suffers from feedstock heterogeneity, low-quality products, and catalyst deactivation. Most plastics in our daily lives are formulated with functional additives, fillers, and colorants. These additives remaining in end-of-life waste streams increase feedstock heterogeneity, creating a challenging issue in recycling plastics. Still, the potential impacts of additives on the chemical upcycling of plastics have been poorly understood. In this study, polyethylene compounded with a range of widely used additives (antioxidants, stabilizers, pigments, fillers, slip agents, and flame retardants) was subjected to both thermal pyrolysis and catalytic pyrolysis in different catalyst-to-feedstock contact modes. It showed that many inorganic additives, such as talc, kaolin, CaCO 3 , TiO 2 , carbon black, and zinc stearate, facilitated polymer decomposition during pyrolysis, increasing light hydrocarbons while also promoting aromatic and carbon residue formation. Conversely, antioxidants and stabilizers inhibited depolymerization, favoring heavier hydrocarbons. During catalytic pyrolysis with HZSM-5 zeolite, additives strongly enhanced aromatic and catalytic coke formation, especially when there was direct contact between plastics and catalysts. Although certain additives seem beneficial in the short term by promoting polymer cracking and improving the selectivity of aromatics, the transport of the additives and their degradation products and increased carbon coking can contaminate products, deactivate or modify catalysts, and foul reactors. These findings address a critical knowledge gap in effectively converting waste plastics via a greener route.

42 ENGINEERING

The ReSWARM microgravity flight experiments: Planning, control, and model estimation for on‐orbit close proximity operations

Abstract On‐orbit close proximity operations involve robotic spacecraft maneuvering and making decisions for a growing number of mission scenarios demanding autonomy, including on‐orbit assembly, repair, and astronaut assistance. Of these scenarios, on‐orbit assembly is an enabling technology that will allow large space structures to be built in situ, using smaller building block modules. However, like many of these scenarios, robotic on‐orbit assembly involves several technical hurdles, such as changing system models. For instance, grappled modules moved by a free‐flying “assembler” robot can cause significant changes in the combined system inertia, which have cascading impacts on motion planning and control portions of the autonomy stack. Further, on‐orbit assembly and other scenarios require collision‐avoiding motion planning, particularly when operating in a “construction site” scenario of multiple assembler robots and structures. Multiple key technologies that address these complicating factors for autonomous microgravity close proximity operations are detailed in this work, in particular: (1) application of global long‐horizon planning, accomplished using offline and online sampling‐based planner options that consider the system dynamics; (2) adaptation of the recently proposed RATTLE information‐aware planning framework for on‐orbit reconfiguration model learning; and (3) connection with robust control tools to provide low‐level control robustness using current system knowledge. These approaches were demonstrated for an autonomous on‐orbit assembly use case by the RElative Satellite sWarming and Robotic Maneuvering (ReSWARM) experiments using NASA's Astrobee robots on the International Space Station. Results of the ReSWARM experiments are provided along with significant operational and implementation detail discussing the practicalities of hardware implementation and unique aspects of working with the Astrobee free‐flyer robots in microgravity. ReSWARM provides a base set of planning and control tools for robotic close proximity operations, demonstrates them in microgravity, and outlines some of the important hardware aspects that future autonomous free‐flyers will need to consider.

Robotics

Renewable Energy and Efficiency Technologies in Scenarios of U.S. Decarbonization in Two Types of Models: Comparison of GCAM Modeling and Sector-Specific Modeling

Energy system projections from analytic models inform actions ranging from short-term and local decisions, such as technology and infrastructure deployment, to global and long-term negotiations and targets. Computational limits require the designers of these models to trade off between coverage and resolution. Some models, such as the Global Change Analysis Model (GCAM), represent all energy sources and uses but at a relatively coarse level of resolution. GCAM balances global supply and demand of all energy carriers by endogenously projecting prices for energy sources and costs of greenhouse gas mitigation while capturing interlinkages between the energy system, water, agriculture and land use, the economy, and the climate. This global model was used to frame the Long-Term Strategy released by the White House in 2021 and has been used to inform national and global economy-wide decarbonization discussions and strategy development for decades. Other models instead focus on a portion of the energy sector with greater detail and resolution. The Regional Energy Deployment System (ReEDS) electricity-sector model, for example, projects capacity expansion with an emphasis on integration of variable renewable energy into the grid of the future. The Transportation Energy and Mobility Pathway Options (TEMPO) transportation-sector model enables analysis of household choices in adoption, charging, and use of electric vehicles. The Scout buildings-sector model supports detailed consideration of the policies and markets that can accelerate the adoption of energy conservation measures in buildings. Such sector-specific models are instrumental in informing technology research, sectoral planning strategies, and sector-specific aspects of greenhouse gas (GHG) mitigation strategies in the United States. These global and sector-specific modeling approaches can complement each other. The global approach ensures consistent, endogenous energy pricing and resource allocation, which can substantially diverge from current conditions in transformative scenarios, while the sector-specific approach facilitates representation of granular details across spatial, temporal, technological, and market dimensions that enable exploration of particular interactions and trade-offs. This report presents the results of recent work to explore the differences and tradeoffs between these approaches by comparing GCAM with the sector-specific ReEDS, TEMPO, and Scout models. The report compares both model structures and results, and discusses their potential relevance and applications.

29 ENERGY PLANNING, POLICY, AND ECONOMY

Proteome-wide analysis of protein stability in Escherichia coli under acid stress

Knowledge of protein acid sensitivity remains sparse and is largely derived from low-throughput, enzyme-specific assays. We used a scalable framework to map acid stability across the Escherichia coli proteome to assess the acid stability of 1,675 unique proteins, estimating pH 50 values for over 90% of them. The parameter pH50 was defined as the pH value at which only 50% of the initial protein remains in solution following acid treatment. Proteome-wide pH 50 values ranged from 2.28 to 6.33 (median 5.11). Approximately 9% of detected proteins remained stable across all tested pH conditions. Our results align with published data and the assay of citrate synthase (GltA) performed here. Protein acid stability differed significantly by subcellular localization: periplasmic proteins were relatively more abundant in the acid-stable group, cytoplasmic proteins were abundant at pH 50 values 4.5–5.5, and inner membrane proteins at higher pH 50 between 5.5 and 6.0. Outer membrane proteins were too few to draw strong conclusions regarding enrichment within specific pH 50 groups. Notably, the periplasmic binding protein of the molybdate ABC transporter (ModA), was enriched after incubation at low pH. Estimated pH 50 values showed no correlation with protein isoelectric point and molecular weight. Together, this work provides the first proteome-wide map of protein acid stability and establishes a general framework for studying different chemical stressors.

37 INORGANIC, ORGANIC, PHYSICAL, AND ANALYTICAL CH