Engineering Papers⌕ Search

SEARCH · Engineering Papers

Results for “Sample Handling”

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 91 records · Page 5

In situ counter-diffusion crystallization and long-term crystal preservation in microfluidic fixed targets for serial crystallography

Compared with batch and vapor diffusion methods, counter diffusion can generate larger and higher-quality protein crystals yielding improved diffraction data and higher-resolution structures. Typically, counter-diffusion experiments are conducted in elongated chambers, such as glass capillaries, and the crystals are either directly measured in the capillary or extracted and mounted at the X-ray beamline. Despite the advantages of counter-diffusion protein crystallization, there are few fixed-target devices that utilize counter diffusion for crystallization. In this article, different designs of user-friendly counter-diffusion chambers are presented which can be used to grow large protein crystals in a 2D polymer microfluidic fixed-target chip. Methods for rapid chip fabrication using commercially available thin-film materials such as Mylar, propylene and Kapton are also detailed. Rules of thumb are provided to tune the nucleation and crystal growth to meet users' needs while minimizing sample consumption. These designs provide a reliable approach to forming large crystals and maintaining their hydration for weeks and even months. This allows ample time to grow, select and preserve the best crystal batches before X-ray beam time. Importantly, the fixed-target microfluidic chip has a low background scatter and can be directly used at beamlines without any crystal handling, enabling crystal quality to be preserved. The approach is demonstrated with serial diffraction of photoactive yellow protein, yielding 1.32 Å resolution at room temperature. Fabrication of this standard microfluidic chip with commercially available thin films greatly simplifies fabrication and provides enhanced stability under vacuum. These advances will further broaden microfluidic fixed-target utilization by crystallographers.

Liu, Zhongrui↗

Effect of particle size and moisture on flow performance of loblolly pine anatomical fractions: Experimental findings and model predictions

The rising energy demand has highlighted biomass as a promising next-generation energy source. However, commercializing biomass-derived energy faces challenges, particularly in handling biomass feedstock. Factors like particle size, shape, moisture content, and surface roughness significantly impact biomass flowability. This study addresses a crucial knowledge gap by examining the effects of particle size and moisture content on the flow behavior and shear properties of different anatomical fractions of loblolly pine (Pinus taeda). The bulk shear behavior was examined using a Schulze ring shear tester, while flow performance was tested through gravity-driven flow experiments in a variable wedge-shape hopper. Results were incorporated into empirical and machine learning-based flow prediction models to evaluate their accuracy and limitations. The study found that samples with higher moisture content show higher unconfined yield strength. The critical arching distance increased with particle size, e.g., from approximately 13 and 33 mm for 2- and 6-mm whole chips, respectively at a 32-degree inclination angle. Conversely, the flow rate decreased for a given hopper opening as particle size increased. For instance, at a 60-mm hopper opening and a 32-degree inclination angle, the mass flow rates for 2- and 6-mm whole chips were 7.83 and 6.42 tonne/h, respectively. The empirical model consistently overpredicted the mass flow rate for all anatomical fractions, while the machine learning model more accurately predicted the central tendency of flow rate but was insensitive to varying tissue proportions. These novel findings provide comprehensive characterization of anatomical fractions, reveal significant combined effects of particle size and moisture content on biomass flow behavior, and demonstrate a better predictive accuracy of a machine learning model, all of which are useful for optimizing material handling strategies and biomass utilization technologies in the industry.

09 - BIOMASS FUELS↗

Comparing Liquid Vortex Capture & the Rapid Droplet Sampling Interface for Single Cell Mass Spectrometry

High-throughput single-cell mass spectrometry is a rapidly evolving field that requires innovative sampling and ionization techniques to balance speed, sensitivity, and reliability for metabolomic and lipidomic analyses. This study provides a comparative analysis of two cutting-edge ionization platforms for single-cell analysis: Liquid Vortex Capture (LVC) and Rapid Droplet Sampling Interface (RDSI). The performance was benchmarked by testing pharmaceuticals, EquiSPLASH, and single-cell experiments. RDSI demonstrated up to 100-fold improvements in sensitivity for drugs and lipids such as propranolol, amiodarone, atorvastatin, and phosphocholines in water and phosphate-buffered solutions. This was attributed to its low-flow rate operation (3 μL/min) and reduced dilution. Conversely, LVC excelled in handling higher liquid volumes with greater reproducibility due to its higher solvent flow rate (200 μL/min), enabling increased dilution, solubility, and cleaning. Single-cell uptake of atorvastatin incubated for 10 min, or amiodarone incubated for 24 h in HepG2 cells, similarly revealed up to 85-fold enhancement in sensitivity by RDSI for drugs and lipids. These findings highlight the potential of RDSI for enhancing sensitivity in single-cell drug monitoring and lipidomics.

Cahill, John [ORNL] (ORCID:0000000298664010)↗

ML-based Micro-CT SOFC Microstructure Models (from Kent 2026 Microstructural Augmentation paper)

Overview -------------------------- This repository contains datasets from the manuscript **"Enhanced Generalizability to Deep-Learning Quantification of 3D Microstructural Characteristics through Microstructurally Aware Augmentation of Scarce Data"** (*William F. Kent, Rochan Bajpai, Rachel C. Kurchin, William K. Epting, Harry W. Abernathy, Paul A. Salvador. Submitted 2026*). The methods are also described in the dissertation **Data Intensive Analysis of Solid Oxide Cell Microstructures** (*Doctoral dissertation, Carnegie Mellon University, 2025*). The datasets here are trained convolutional neural network (CNN) models for predicting key microstructural properties of solid oxide cell (SOC) electrodes from low-res, 2-channel 3D images, as well as some helpful code. The parameters for input images are provided in the paper. Sample data is provided in the file `Combined_anode_aug_dual_1k_examples` - that particular data was used to train `anode_all_aug.pth` and will work most accurately with that model. Please familiarize yourself with all caveats on accuracy and applicability, as detailed in the associated paper. Usage -------------------------- The basic usage is as follows, assuming `model_fn` is the path to the .pth file, and `X` is 2-channel input image(s) of the proper dimensions (either one image of shape `[2,12,24,24]`, or a batch of N input images of shape `[N,2,12,24,24]`): from CNN_inferencer import load_model_for_inference model = load_model_for_inference(model_fn) y_predicted = model(X) The model object automatically handles input scaling and output de-scaling based on the way the models were trained - in other words, pass in a 2-channel micro-CT image, and it will output microstructural property values in real units. ## Other model object attributes Note that model has useful attributes other than its forward pass model(X). * `model.output_descaler` - returns the output descaler object. Model does the de-scaling when generating inferences, but you may want to re-use this de-scaler on other values to e.g. compare predictions to ground truth from already-scaled training data. * `model.prop_names` - Gives the property names of the predicted y values, in order. Only exists if there's an output scaler as part of the model object, which there will be in the models provided here. ## Usage with sample data Here is a short script to use with the included sample data. from CNN_inferencer import display_predictions, load_model_for_inference, calculate_mape, parity_plot import h5py import numpy as np model_fn = 'anode_all_aug.pth' data_fn = 'Combined_anode_aug_dual_1k_examples.h5' N_samples = 200 figure_outdir = '.' model = load_model_for_inference(model_fn) with h5py.File(data_fn,'r') as f: XX = f['X'] #These are the 2-channel 3D images yy = f['y'] #These are the ground-truth microstructural properties, but they have been scaled for training - need to de-scale below N = XX.shape[0] #How many images total in the input data file #Run inferences on N_samples random samples from XX. #Run in a batch, much more efficient than one at a time. ii = np.random.choice(N,N_samples,replace=False) ii.sort() y_pred = model(XX[ii]) #Get the original/true (but normalized/scaled) values from the training dataset... #Because they were normalized, they are not in real units yet. So let's also de-scale them using model.output_scaler. y_true = model.output_scaler.transform(yy[ii]) #Let's display actual values for just 5 random ones for i in np.random.choice(N_samples,5,replace=False): display_predictions(y_true[i], y_pred[i], model.prop_names) #Make parity plots for each property (ground truth vs predicted values) #Also label each plot with the mean abs. percent error (MAPE) of the predicted values for i,key in enumerate(model.prop_names): mape = calculate_mape(y_true[:,i], y_pred[:,i]) parity_plot(y_true[:,i], y_pred[:,i], figure_outdir, key, extra_title=f' ({mape:.2f}% MAPE)')

3D microstructure↗

Search for long-lived heavy neutral leptons decaying in the CMS muon detectors in proton-proton collisions at s = 13 TeV

A search for heavy neutral leptons (HNLs) decaying in the CMS muon system is presented. A data sample is used corresponding to an integrated luminosity of 138 fb - 1 of proton-proton collisions at s = 13 TeV , recorded at the CERN LHC in 2016–2018. Decay products of long-lived HNLs could interact with the shielding materials in the CMS muon system and create hadronic and electromagnetic showers detected in the muon chambers. This distinctive signature provides a unique handle to search for HNLs with masses below 4 GeV and proper decay lengths of the order of meters. The signature is sensitive to HNL couplings to all three generations of leptons. Candidate events are required to contain a prompt electron or muon originating from a vertex on the beam axis and a displaced shower in the muon chambers. No significant deviations from the standard model background expectation are observed. In the electron (muon) channel, the most stringent limits to date are set for HNLs in the mass range of 2.1–3.0 (1.9–3.3) GeV, reaching mixing matrix element squared values as low as 8.6 ( 4.6 ) × 10 - 6 .

72 PHYSICS OF ELEMENTARY PARTICLES AND FIELDS↗

Unveiling Feedstock Variability: Insights into Corn Stover Conversion - Part I: Physicochemical Properties and Self-Degradation

Transforming agricultural waste into biofuels and bioproducts is crucial to advancing a low-carbon bioeconomy. However, the inherent variability in the composition and quality introduces uncertainties in the conversion efficiency and poses challenges in process development. Through integrating a high-throughput conversion system, material characterization techniques, and advanced data analysis tools, this study investigates the variability of corn stover and its subsequent impacts on carbohydrate conversion. The findings reveal that indoor storage substantially reduces the moisture and ash content and soil contamination, while other properties remain largely unchanged. Self-degradation due to microbial activity during storage decreases the carbohydrate content of corn stover but enhances glucose and xylose yields. A negative correlation is observed between sugar yields and lignin content across samples with varying ash and moisture content. The inhibitory effect of lignin diminishes in self-degraded samples likely due to the disrupted cell wall structure. Although self-degradation slightly increases cellulose crystallinity, no strong correlation was observed between the crystallinity and sugar yield. Hot water pretreatment under mild conditions effectively mitigates inherent variability, consistently improving the sugar yield from corn stover by up to 50%. By elucidating the feedstock variability and its impact on convertibility, these findings offer valuable insights into appropriate feedstock handling and management, highlighting potential strategies to address variability challenges.

09 BIOMASS FUELS↗

Optical Particle Measurements during EPCAPE Field Campaign Report

This campaign requested the deployment of the U.S. Department of Energy (DOE) Atmospheric Radiation Measurement (ARM) User Facility optical particle counter (OPC) at the first ARM Mobile Facility (AMF1) located at the Scripps Pier in La Jolla, California during the Eastern Pacific Cloud Aerosol Precipitation Experiment (EPCAPE). The addition of the OPC was requested for two reasons. (1) Close the gap between the scanning mobility particle sizer (SMPS) and aerodynamic particle sizer (APS) size distribution from the Aerosol Observing System (AOS) measurements. (2) Principal investigator Petters has been working with Tracking Aerosol Convection Interaction Experiment (TRACER) data to compute particle fluxes from Doppler lidar (Petters et al. 2024). Briefly, backscatter flux is obtained using the eddy covariance technique using the Doppler vertical velocity and attenuated backscatter. Building upon prior studies, we were able to relate backscatter to particle number concentration by calibrating the lidar retrievals against optical particle counter-measured ground-based aerosol size distribution and radiosonde-interpolated relative humidity at lidar sample height. Performing similar analysis was of interest to EPCAPE to better understand the emissions and vertical transport of large particles into the overlying stratus clouds. However, as stated above, this analysis requires an optical size distribution that covers the 0.3-30-μm-diameter size range. The OPC was deployed between 2023-04-14 and 2024-02-14. The deployment, data quality analysis, and data archiving was handled by the DOE ARM instrument mentor team without additional involvement by the principal investigator. Data quality was marked as “routine” for the majority of the campaign.

54 ENVIRONMENTAL SCIENCES↗

HydraGNN v5.0

HydraGNN v5.0 expands the code base into a more portable, scalable, and flexible framework for scientific graph learning, with particular strength in atomistic machine-learning interatomic potentials and large-scale distributed training. The release adds Fully Sharded Data Parallel (FSDP) support alongside existing DDP and DeepSpeed paths, including FSDP-aware checkpointing and optimizer integration, and introduces a configurable multi-precision training workflow supporting FP32, BF16, and FP64 across GPUs and Intel XPUs. For atomistic modeling, HydraGNN v5.0 strengthens its MLIP capabilities through dynamic graph construction at every forward pass, energy-conserving force prediction via automatic differentiation, and per-atom energy loss formulations, while extending EGNN models to properly handle periodic boundary conditions. The release also broadens model expressiveness through graph-level attribute conditioning, adds new multi-task and model-parallel extensions such as MACE support and encoder/decoder branch optimization, and expands application coverage with integrated examples for datasets including OC25, Nabla2-DFT, QCML, Open Polymers 2026, and OPF. In parallel, HydraGNN v5.0 improves production readiness through performance optimizations for large-scale runs, stratified sampling and linear-regression preprocessing utilities, and tested installation scripts for DOE supercomputers including Frontier, Aurora, Perlmutter, and Andes. Overall, the release advances HydraGNN as a robust software platform for scalable graph neural networks across materials science, chemistry, and scientific machine learning workflows

Lupo Pasini, Massimiliano [Oak Ridge National Labo↗

Constraining the Beam Neutrino MC Flux Using the MINOS ND Data

This document describes a method to handle correlated systematic uncertainties from hadron production on the beam spectrum by using the neutrino ·data from the MINOS detector. We have developed a tuning function which can be applied after the fact to the Monte Carlo to force agreement with the CC neutrino energy spectra observed in the near detector and the beam MC. The method relies on the flexible NuMI beam, which can be configured so as to selectively sample pions. of different momenta and angles off the target. There is sufficient information in the neutrino data in a detector like MINOS to deduce the portion of the underlying spectrum of hadrons off the NuMI target which contribute to the NuMI flux.

Kopp, Sacha [U. Texas, Austin (main)]↗

Conformal Hierarchical Simulation-Based Inference with Local Validity

Trustworthy and interpretable uncertainty quantification is a long-standing challenge in artificial intelligence. Simulation-based inference (SBI) comprises a broad swath of approaches for estimating latent parameters with uncertainties. Although flexible neural density estimators in SBI can be remark- ably expressive capturing highly structured, high-dimensional posteriors their credible regions can be badly mis-calibrated and are often only accompanied by heuristic coverage checks. We present the first SBI framework that delivers finite-sample local valid coverage guarantees that hold in the neighborhood of each observation. Our framework can couple any off-the-shelf hierarchical SBI engine with a confor- mal Bayesian post-processing step that operates on the posterior predictive density. A kernel-weighted conformity score adapts the conformal quantile to the local geometry of the data, yielding prediction sets that are simultaneously (i) marginally calibrated, (ii) locally valid, and (iii) hierarchical, handling global and observation-specific parameters in a single pass. Through experiments on synthetic data and benchmarks from neuroscience and physics, we show that our approach attains 1 − α coverage, where prior SBI methods under- or over-cover. Our approach also maintains a competitive, credible set size with minimal computational overhead. Finally, our approach can be used to make predictions on real data and give valid credible regions modulo weight-initialization-based model mis-specification.

Trivedi, Shubhendu [Fermilab]↗

Assessment of Envelope- and Machine Learning-Based Electrical Fault Type Detection Algorithms for Electrical Distribution Grids

This study introduces envelope- and machine learning (ML)-based electrical fault type detection algorithms for electrical distribution grids, advancing beyond traditional logic-based methods. The proposed detection model involves three stages: anomaly area detection, ML-based fault presence detection, and ML-based fault type detection. Initially, an envelope-based detector identifying the anomaly region was improved to handle noisier power grid signals from meters. The second stage acts as a switch, detecting the presence of a fault among four classes: normal, motor, switching, and fault. Finally, if a fault is detected, the third stage identifies specific fault types. This study explored various feature extraction methods and evaluated different ML algorithms to maximize prediction accuracy. The performance of the proposed algorithms is tested in an emulated software–hardware electrical grid testbed using different sample rate meters/relays, such as SEL735, SEL421, SEL734, SEL700GT, and SEL351S near and far from an inverter-based photovoltaic array farm. The performance outcomes demonstrate the proposed model’s robustness and accuracy under realistic conditions.

24 POWER TRANSMISSION AND DISTRIBUTION↗

Monitoring Plan for the Idaho National Laboratory Remote Handled Low Level Waste Disposal Facility

This monitoring plan for Idaho National Laboratory’s Remote-Handled Low Level Waste Disposal Facility was developed to meet the requirements for monitoring low-level waste disposal facilities according to the U.S. Department of Energy (DOE) Order 435.1, “Radioactive Waste Management,” and the guidance provided in the associated technical standard “Disposal Authorization Statement and Tank Closure Documentation” (DOE-STD-5002-2017). The purpose of this monitoring plan is to document a monitoring strategy that includes (1) compliance monitoring activities to demonstrate compliance with regulatory standards/limits and (2) performance monitoring to build confidence the facility is performing as demonstrated in the facility performance assessment (PA) (DOE-ID 2018a), composite analysis (CA) (DOE ID 2012), and CA addendum (DOE-ID 2018b). The de minimus impact to the aquifer predicted by the PA suggests that aquifer compliance monitoring should be augmented with performance monitoring of the drainage course materials and sedimentary interbeds in the vadose zone beneath the facility to provide a more effective means of identifying performance deviations. The monitoring approach delineated in this document was informed by the systems evaluation of natural and engineered facility features presented in the PA, an assessment of aquifer baseline conditions (INL 2017d), the dose analysis conducted in support of the PA and CA, and monitoring data collected during the first four years of facility operations (baseline monitoring phase) (INL 2023b). This plan provides monitoring locations, sampling frequencies, and sampling methods; recommendations for data evaluation; and a description of the monitoring plan implementation. Collected data will be used to demonstrate facility compliance and to identify conditions that are not consistent with the key assumptions made by the PA and CA.

12 - MGMT OF RADIOACTIVE AND NON-RADIOACTIVE WASTE↗

Assessing the Application of a Genomic Network Analysis in Population Ecology: Inferring Patterns of Dispersal and Geographic Structure in the Emerging Pathogen, Coccidioides

A challenge in population ecology studies is identifying how to best group individuals into populations, especially when individual origin is unknown. Machine learning has improved upon traditional methods of identifying population structure and is more efficient at handling large, complex datasets. We demonstrate the applicability of a machine learning method to identify hierarchical population structure in an emerging pathogen, Coccidioides spp., the causative agent of Valley fever. We compared the network clusters to structure identified by traditional tools as a validation of the network performance. We used publicly available whole-genome data for 48 C. immitis and 102 C. posadasii, resulting in 168,211 genome-wide SNPs among the two species. The network analysis grouped samples into populations comparable to the literature for these species but also identified fine-scale geographic structure and travel-associated cases not reported thus far. Exploring different resolutions in the network made it easy to identify unique genotypes specific to California and possibly Nevada, as well as Phoenix- and Tucson-acquired infections in non-endemic areas, regardless of reported travel history. The present study provides a promising example of how a ML-based network analysis can improve our ability to understand pathogen ecology, group cases into populations and infer travel-associated infections.

59 BASIC BIOLOGICAL SCIENCES↗

A miniaturized feedstocks-to-fuels pipeline for screening the efficiency of deconstruction and microbial conversion of lignocellulosic biomass

Sustainably grown biomass is a promising alternative to produce fuels and chemicals and reduce the dependency on fossil energy sources. However, the efficient conversion of lignocellulosic biomass into biofuels and bioproducts often requires extensive testing of components and reaction conditions used in the pretreatment, saccharification, and bioconversion steps. This restriction can result in a significant and unwieldy number of combinations of biomass types, solvents, microbial strains, and operational parameters that need to be characterized, turning these efforts into a daunting and time-consuming task. Here we developed a high-throughput feedstocks-to-fuels screening platform to address these challenges. The result is a miniaturized semi-automated platform that leverages the capabilities of a solid handling robot, a liquid handling robot, analytical instruments, and a centralized data repository, adapted to operate as an ionic-liquid-based biomass conversion pipeline. The pipeline was tested by using sorghum as feedstock, the biocompatible ionic liquid cholinium phosphate as pretreatment solvent, a “one-pot” process configuration that does not require ionic liquid removal after pretreatment, and an engineered strain of the yeast Rhodosporidium toruloides that produces the jet-fuel precursor bisabolene as a conversion microbe. By the simultaneous processing of 48 samples, we show that this configuration and reaction conditions result in sugar yields (~70%) and bisabolene titers (~1500 mg/L) that are comparable to the efficiencies observed at larger scales but require only a fraction of the time. We expect that this Feedstocks-to-Fuels pipeline will become an effective tool to screen thousands of bioenergy crop and feedstock samples and assist process optimization efforts and the development of predictive deconstruction approaches.

09 BIOMASS FUELS↗

Advanced Test Reactor Safety Basis Update for Gas-Cooled Experiments

The Advanced Test Reactor (ATR) supports neutron irradiation of several types of experiments. One such experiment type is referred to as a gas leadout. Gas leadout experiments actively flow gas through the experiment which allows for active temperature control. It also allows for in-situ data of the experiment. For example, fission gas migration through a fuel sample can be monitored via activity of the sweep gas. Historically, ex-pile equipment and fission product monitors were housed in shielded ATR cubicles. Due to other facility updates, cubicle space is no longer available for gas leadout experiment equipment. To support continued operation of gas leadout experiments, ATR completed a safety basis update that supports a new housing for leadout equipment that may process potentially contaminated gas. In addition to the structure and associated equipment, technical safety requirements regarding handling and storage of experiments needed to be revised to support fueled gas leadout experiments and associated outage configurations. The safety basis update addressed the full lifecycle of these experiments, including experiment movement and interim storage, and credible abnormal events such as failures or leaks in contaminated gas tubing in occupied areas. This paper discusses the completed analyses performed to support the safety basis update associated with gas leadout experiments, including thermal-hydraulic evaluation, probabilistic analysis, and dose consequence analyses.

11 - NUCLEAR FUEL CYCLE AND FUEL MATERIALS↗

A Pseudoreversible Normalizing Flow for Stochastic Dynamical Systems with Various Initial Distributions

Here, we present a pseudoreversible normalizing flow method for efficiently generating samples of the state of a stochastic differential equation (SDE) with various initial distributions. The primary objective is to construct an accurate and efficient sampler that can be used as a surrogate model for computationally expensive numerical integration of SDEs, such as those employed in particle simulation. After training, the normalizing flow model can directly generate samples of the SDE’s final state without simulating trajectories. The existing normalizing flow model for SDEs depends on the initial distribution, meaning the model needs to be retrained when the initial distribution changes. The main novelty of our normalizing flow model is that it can learn the conditional distribution of the state, i.e., the distribution of the final state conditional on any initial state, such that the model only needs to be trained once and the trained model can be used to handle various initial distributions. This feature can provide a significant computational saving in studies of how the final state varies with the initial distribution. Additionally, we propose to use a pseudoreversible network architecture to define the normalizing flow model, which has sufficient expressive power and training efficiency for a variety of SDEs in science and engineering, e.g., in particle physics. We provide a rigorous convergence analysis of the pseudoreversible normalizing flow model to the target probability density function in the Kullback–Leibler divergence metric. Numerical experiments are provided to demonstrate the effectiveness of the proposed normalizing flow model.

97 MATHEMATICS AND COMPUTING↗

3D Geologic Framework Modelling of the Los Alamos National Laboratory Site and Pajarito Plateau: Integrating a realistic 3D fault network and modelling subsurface relationships in a sparsely sampled and complex geologic region

The subsurface geology beneath the Pajarito Plateau is critical to understanding the seismic hazard of the Pajarito Fault System, yet our understanding of this geology is relatively poor. While previous 3D geologic framework models of the area have been created for the purposes of understanding hydrogeologic flow, they are inadequate for the purposes of understanding the Pajarito Fault System. The specific challenges of using oil and gas software for this purpose include: (1) the geologic complexities resulting from volcanism and tectonism; (2) a need for a high level of stratigraphic detail over a large area; (3) a near complete lack of seismic data; and (4) sparse wellbore data. Presented here is a workflow that handles these challenges of adapting commercially available software used by the oil and gas industries to this seismic hazard problem.

58 GEOSCIENCES↗

Handling and Properties of Methanol as a Marine Fuel

Given the increasing concern around greenhouse gas emissions and the decline in the availability of fossil fuels, there is increasing global demand to develop alternate fuels for maritime transportation that are sustainable and which have lower greenhouse gas emissions. Methanol is one such alternative fuel that has garnered considerable attention given its potential to be produced by more sustainable processes and its more favorable greenhouse gas emission profile in comparison with current fossil fuels. Understanding the physical and chemical properties of methanol under a range of conditions is essential for its development as a marine fuel. In this study, we seek to define physical and chemical properties of different methanol samples to simulate real-world storage conditions as these data are lacking in the literature. Several methanol samples were evaluated: nearly pure methanol; International Organization for Standardization (ISO) marine methanol (MM) grades A, B, and C; and methanol plus higher alcohols. We first evaluated all methanol samples for impurities, acetic acid content, density, and distillation range. We then characterized the effects of water absorption and found that methanol can easily absorb unacceptable water content from humid air within hours, necessitating storage conditions that prevent this process. In eight-week aging experiments at 20 °C and 40 °C in ambient air, we did not observe significant oxidation for any of the methanol samples; however, we did observe increases in acid number. We assessed the impact of contamination of methanol with water, marine gas oil (MGO), and an MGO–biodiesel mixture on density, viscosity, distillation range, and lubricity. Finally, we show that MGO contamination of methanol results in a slight increase in sooting tendency. In aggregate, our results provide an in-depth analysis of physical and chemical properties of methanol as well as the impacts of storage conditions and impurities on the properties of fuel methanol.

09 BIOMASS FUELS↗