Engineering Papers⌕ Search

SEARCH · Engineering Papers

Results for “SOFC”

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 19 records

System Analysis of an Internal Combustion Engine (ICE) - Solid Oxide Fuel Cell (SOFC) Hybrid Cycle

The variability of renewable energy sources poses challenges for reliable grid operation. Conventional thermal power sources, though reliable, often lack operational flexibility. Hybrid energy systems that integrate Solid Oxide Fuel cells (SOFC) with Internal Combustion Engines (ICE) offer a promising solution by achieving relatively higher efficiency and grid-following capability. This study investigates performance of a 100-kW pressurized SOFC-ICE hybrid cycle. In this configuration, unutilized SOFC fuel is used to drive the engine, with a turbocharger providing air supply and an external reformer generating syngas. System components were numerically modeled using MATLAB/SIMULINK for the SOFC and reformer, and EBSILON® for the ICE and balance of plant. Parametric studies varied fuel utilization (70-90%), reformer temperature (600 – 1000K), anode off-gas recirculation (0 – 70%), and current density (0.2 – 0.55 A/cm2). Results show that the SOFC and ICE operate as thermally independent topping and bottoming cycles, achieving peak efficiency of 62% under optimized conditions.

hybrid↗

High Performance Metal-Supported SOFC System for Range Extension of Commercial Aviation

The DOE ARPA-E REEACH program [1] has enabled this Phase 1 study that conceptualizes a commercial 154 passenger electric aircraft using renewable aviation fuel for range extension while meeting similar mission performance levels as current commercial aircraft. Commercial aviation accounts for about 2.5% of global CO2 emissions, and close to 5% of overall anthropogenic climate change due to the added accounting of contrail’s effects [2]. The sector has adopted a goal of carbon neutrality by 2050 [3]. 110 nations, and recently the new US administration, have embarked on work to address this important challenge. The US DOE has released a roadmap to enable the further development of sustainable aviation fuel (SAF) in the hopes that it could meet all of aviation’s fuel needs by 2050 [4]. However, SAF fuel price and sufficient future feedstock availability remains a concern [5]. Considering the first commercial biofuel flight demonstration 14 years ago [6] and that SAF still only comprises less than 0.1% of jet fuel use, the question arises as how it can ramp up to 100% use in the next 27 years. One option that has the potential to substantially reduce the need for SAF is to implement light-weight Solid Oxide Fuel Cells (SOFCs) that can efficiently utilize SAF or other sulfur-free hydrocarbon fuels. As opposed to lower temperature PEM (Proton Exchange Membrane) fuel cells that can use high-purity hydrogen, SOFC’s fuels are very flexible, ranging from low cost liquefied natural gas (LNG), renewable liquefied natural gas (RLNG), to SAF, to generate clean electrical power for use in aviation propulsion and auxiliary power units [7] [8]. Research progress is needed to enable SOFCs to achieve 3.0 kW/kg power density, making them viable for aviation [9]. The DOE’s Advanced Research Projects Agency – Energy (ARPA-E) has therefore initiated an aviation SOFC R&D program that is anticipated to dramatically reduce aircraft fuel use though the implementation of “Range Extenders for Electric Aviation with low Carbon and High efficiency” (REEACH) [1] for medium range commercial aircraft. This report summarizes the progress during phase 1 of the REEACH program.

32 ENERGY CONSERVATION, CONSUMPTION, AND UTILIZATI↗

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↗

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↗

Porous Interlayers that Getter Surface-Segregating Species for Improved Silver Wetting, Adhesion, and Electrical Contact on Stainless Steel SOFC Components

Here, porous nickel interlayers or porous platinum interlayers were shown to promote the wetting, spreading, and adhesion of silver on alumina-forming ferritic stainless steel (AFFSS) and chromia-forming ferritic stainless steel (CFFSS). These interlayers resulted in dense, crack-free AFFSS|Ag-Ni|CFFSS and AFFSS|Ag-Pt|CFFSS braze joints that, after 300 h in 650 °C air, displayed shear strengths up to 70 MPa similar to, or larger than, those of AFFSS|Ag-CuO|CFFSS or AFFSS|Ag|CFFSS joints subjected to identical treatment. Similarly, after exposure to 25 cycles of (50 switches between) 12 h of 650 °C air and 12 h of 650 °C 4%H 2 –96%N 2 , AFFSS|Ag-Ni|CFFSS and AFFSS|Ag-Pt|CFFSS braze joints displayed shear strengths significantly larger than those of AFFSS|Ag-CuO|CFFSS or AFFSS|Ag|CFFSS joints subjected to identical treatment. In addition, nickel and platinum were found to chemically getter surface-segregating steel constituents, particularly Al from the AFFSS. As a result, Ag-Ni and Ag-Pt electrical contact resistances on AFFSS and CFFSS substrates were several orders of magnitude lower than those of conventional Ag-CuO reactive air brazes or Heraeus C8710 Ag contact pastes. Together, these results suggest that Ag-Pt and especially Ag-Ni may be useful for the fabrication of durable joints, seals, and/or electrical contacts in electrical/electrochemical devices exposed to high temperatures and/or variable oxygen partial pressure environments.

36 MATERIALS SCIENCE↗

Hybrid SOFC-Turbogenerator for Aircraft (Final Scientific/Technical Report)

The following paragraphs provide a high-level summary of the work performed during Phases I and II of this contract. Note that the order deviates from the WBS in places to better reflect the actual sequence of activities and the connections between them. Corresponding task numbers in the WBS are provided in parentheses after the task titles. There are a total of thirteen (13) tasks.

32 ENERGY CONSERVATION, CONSUMPTION, AND UTILIZATI↗

FCET Solid Oxide Fuel Cell Testing and Development (CRADA 526) (Final Report)

Pacific Northwest National Laboratory (PNNL) tested electrolyte coatings from Fuel Cell Enabling Technologies, Inc. (FCET) for use in solid oxide fuel cells (SOFCs). The key technology held by FCET is a process to deposit thin layers of oxide materials, less than 1 μm in thickness. The range of possible materials that can be deposited with their method is broad, but this project focused on the gadolinium-doped ceria (GDC) and yttria-stabilized zirconia (YSZ) electrolytes for SOFCs. Thin, gas tight electrolyte membranes have been a long-sought target in SOFC research. The thinner the electrolyte, the lower the cell resistance, and the higher performance of the cell (or the lower the operating temperature). A YSZ thickness of 1 μm would be a step change from the state-of-the-art, tape-cast electrolytes (~10 μm). An in-house prototype SOFC stack from FCET was first tested. The sealing geometry of the prototype stack was determined to be problematic, and testing shifted to button cells. Anode-supported solid oxide electrolysis cell (SOEC) button cells without an electrolyte layer were produced at PNNL and sent to FCET for coating with electrolyte. Three cells were tested with a gadolinium-doped ceria (GDC) electrolyte applied via spin coating. GDC was chosen for its conductivity at lower temperatures than YSZ. All three cells failed during initial reduction under hydrogen at 600°C. Testing then shifted to YSZ, which is the standard SOFC electrolyte. Several button cells were coated with YSZ and examined with scanning electron microscopy (SEM). A promising coating of ~1 mm thickness was observed under SEM. A similarly coated button cell was tested and failed similarly to previous tests during reduction at 600°C. The YSZ coating appeared dense and uniform in SEM analysis. The roughness of the underlying Ni/YSZ anode is on the order of 1 μm, and that may have compromised the gas-tightness of the coating. Further development is warranted to understand and refine the coating process. Thin YSZ applied via this spin-coating technique could be used as a low-cost, drop-in replacement in large-scale SOFC manufacturing processes, improving cell performance and lowering the cost per watt of SOFCs.

30 DIRECT ENERGY CONVERSION↗

High Power Density, Carbon Neutral Electrical Power Generation for Air Vehicles

The synergistic integration of a Solid Oxide Fuel Cell-Combustor (SOFC-C) with a turbogenerator (TG) will provide a very high fuel-to-electricity conversion efficiency while maintaining high power-to-weight ratio during high-altitude flight. The proposed SOFC-C-TG power generation technology exceeds the REEACH technical performance targets (TPT). This unique concept addresses many of the challenges faced in all electric propulsion-based aviation. The system has high part-load efficiency (more than 65% lower heating value (LHV)) during long cruise times, load following capability, high-power capacity at high altitudes adapting to low temperatures and pressures, rapid startup time of less than 30 minutes (proven with current SOFC technology), high power density (more than 3.2 kW/kg), efficient thermal management, and a foundation for a compact, efficient electrical storage and power generation system (ESPG). The SOFC-C concept achieves the technology targets by reducing the complexity of traditional fuel cell-gas turbine hybrid systems (FC-GT). The SOFC-C does not require heat exchangers and dramatically reduces the balance of plant increasing power density and performance in efficiency. The reduction in mass through elimination of heat exchangers, external reformer, and other components dramatically decreases the overall thermal dampening of the system which enables rapid startup and load following capability. Direct control of the cathode inlet temperature of the SOFC-C enables rapid warm-up of the SOFC tubes with the ability to reach operating temperature and full power in less than 30 minutes.

03 NATURAL GAS↗

Improving Cost and Efficiency of the Scalable Solid Oxide Fuel Cells Power System

The objective of this project was to design and develop a 20kW range small-scale solid oxide fuel cells (SOFC) power system for applications such as data centers and commercial buildings. The original plan included a 5,000 hours demonstration and a Techno-Economic Analysis (TEA) which were dropped as part of project termination. The original project plan was to use a stack with a cross-flow cell design which had previously been tested for 500 hours at a community college in Malta, NY. However, it was decided to move to the advanced R-SOFC co-flow cell developed under Department of Energy Award DE-FE0031971. The advanced cell design has the advantage of a larger active area for the same manufacturing footprint which results in fewer required cells for the same stack power, hence a higher volumetric power density (kW/L) and lower cost per kW than the original cross-flow cell design. A full SOFC system Simulink model was developed and calibrated with testing data from a fuel cell stack and BOP (balance of plant) components. The simulation results from the calibrated model showed an acceptable match with the experimental data. A structural analysis conducted for various load scenarios indicated no high stress areas for all spatial directions. Major electrical system components were acquired, built and successfully tested. System sensors were verified and validated against controls. Safety checks, a diagnostic check, PID tuning, and control software commissioning tasks were also conducted. The power electronics prototype was delivered and trial testing completed. Balance of Plant component testing and simulation work was conducted to characterize Reformer-Heat Exchanger heat transfer and backpressure and reformer catalyst methane conversion and product selectivity. Simulations were conducted to design the Anode and Cathode fluid passages and size the air-air and fuel-fuel heat exchangers. A Burner operation map was created from test data and the Anode Gas Recirculation blower was tested to evaluate its durability. The SOFC system used a horizontal style design where components sit directly on a casting with a direct connection to the skid. This design has efficient packaging and a small footprint with approximate dimensions of 750 mm x 700 mm x 1700 mm. An SOFC system was built and successfully tested at the Malta, NY facility The system for over 500 hours under load of which over 300 hours was at full load of 20 kW.

30 DIRECT ENERGY CONVERSION↗

The Effect of Operational Temperature on the Performance and Durability of Solid Oxide Fuel Cells and Solid Oxide Electrolysis Cells

Solid oxide fuel cells (SOFC) and solid oxide electrolysis cells (SOEC) have received great interest due to their highly effective reversibility as power generation and H2 production system without releasing any greenhouse gases into environment. The LSCF electrode exhibits a higher structural and performance stability under both SOFC and SOEC operation due to its mixed ionic and electronic conductivity, and there is no immediate delamination taking place during the initial several hundred hours operation. However, the LSCF based air electrode still presents significant performance degradation (with the increased resistance) over the prolonged operation, such as over 1000 hours of operation under SOFC and SOEC. The influence factors for the cell’s performance and stability need to be optimized to improve the power generation for SOFC and H2 production for SOEC. The effects of operational temperature on the performance and durability for both SOFC and SOEC are electrochemical operation dependent. The performance and performance durability for the first 1500h were currently studied under optimized operational temperature for reversible SOFC/SOEC.

Fan, Yueying [NETL Site Support Contractor, Nation↗

Integration of Solid Oxide Fuel Cell Systems Into Artificial Intelligence Data Centers

This report presents the results of a techno-economic analysis (TEA) that evaluates the economic benefits of integrating solid oxide fuel cell (SOFC) systems with artificial intelligence (AI) data centers. The analysis was completed in two phases: a scoping-level analysis was performed to identify impactful integration opportunities, followed by a more detailed TEA. Results show that, due to their modularity, SOFC can meet the 99.999% availability requirement of data centers with minimal additional costs. Heat integration via absorption chillers decreases data center electricity consumption at the tradeoff of increased water consumption. Higher SOFC exhaust temperatures are important for achieving larger electricity savings. Finally, power electronics integration with SOFC direct current electricity can reduce electricity consumption by 9 percent and reduce water consumption by 6.4 percent.

20 FOSSIL-FUELED POWER PLANTS↗

Next Generation Solid Oxide Fuel Cell Module Development

The overall objective of this project was to develop a transformative Solid Oxide Fuel Cell (SOFC) building block configuration comprised of multi-stack arrays that can be utilized in large-scale power plants. This transformative design signified the benefits of lower performance degradation coupled with improved reliability, low cost, smaller packaging for easier transport and installation, and improved maintenance and field serviceability characteristics. The project goal was to design and fabricate a scalable hot module for housing an array of SOFC stacks and to demonstrate the characteristics of the module gas distribution, insulation and instrumentation, and DC power take-off. The approach was to validate the design of a stack prototype scalable to megawatt (MW) class systems using FuelCell Energy’s Compact SOFC Architecture (CSA) stacks. The scope of work was intended to design, build, and test a compact and low-cost multi-stack sub-module with flexibility to house CSA stacks and scalable to 350 kW which could ultimately be deployed in construction of MW-class systems.

20 FOSSIL-FUELED POWER PLANTS↗

An efficient construction of nano-interfaces for excellent coking tolerance of cermet anodes

Solid oxide fuel cells (SOFCs) are promising energy conversion devices for the effective and convenient utilization of hydrocarbons (for example, methane) to electricity. However, the development of direct methane SOFCs is primarily hindered by the poor coking tolerance of the state-of-the-art Ni-based cermet anodes. Herein, we efficiently construct nano-interfaces in the anode by infiltrating a Ni 0.6 Y 0.064 Zr 0.336 O 2-δ (NYZ) catalyst onto the traditional Ni-based cermet anode to effectively enhance the coking tolerance. After being reduced in H 2 , Ni and Y 0.16 Zr 0.84 O 2-δ (YSZ) nanoparticles (NPs) are in situ formed on the surface of the Ni-YSZ substrate. The roughened anode demonstrates significantly improved fuel oxidation activity and coking tolerance, due likely to the formation of nano-interfaces. Specifically, when applied in the Ni-YSZ-based anode-supported SOFCs, a high peak power density of 1.785 W cm –2 and a stable operation of ~ 240 h with no observable degradation is achieved at 750 °C in nearly dry methane (3% H 2 O). Finally, a density functional theory study suggests that the excellent coking tolerance is attributed to the formation of OH species on Ni/YSZ nano-interfaces, which would further interact with intermediate carbon species to generate COH intermediates.

30 DIRECT ENERGY CONVERSION↗

Preliminary Screening Techno-Economic Analysis of Industrial SOFC/SOEC and Reversible SOC Integration

National Energy Technology Laboratory (NETL) provides system-level process, cost, and market analyses on solid oxide cell (SOC) based technologies. Specifically, techno-economic analyses (TEA), market assessments, and other technology evaluations serve to guide the U.S. Department of Energy (DOE) Office of Fossil Energy and Carbon Management (FECM) Reversible Solid Oxide Fuel Cell (R-SOFC) Program technology goals and objectives. These studies are key to describing how the technologies contribute to improving domestic energy infrastructure in a clean, efficient manner. This effort seeks to elucidate the potential integration opportunities between reversible SOCs and industrial systems which would aid in SOC commercialization and deployment. These preliminary screening-level results show what opportunities exist for power generating SOFCs, hydrogen producing SOECs, and point-source carbon capture. Improvements can be seen through changes in cost of electricity, cost of hydrogen, and cost of carbon capture.

reversible SOC↗

A thermodynamic perspective on electrode poisoning in solid oxide fuel cells

A critical challenge to the commercialization of clean and high-efficiency solid oxide fuel cell (SOFC) technology is the insufficient stack lifespan caused by a variety of degradation mechanisms, which are associated with cell components and chemical feedstocks. Cell components related degradation refers to thermal/chemical/electrochemical deterioration of cell materials under operating conditions, whereas the latter regards impurities in feedstocks of oxidant (air) and reductant (fuel). This article provides a thermodynamic perspective on the understanding of the impurities-induced degradation mechanisms in SOFCs. The discussion focuses on using thermodynamic analysis to elucidate poisoning mechanisms in cathodes by impurity species such as Cr, CO 2 , H 2 O, and SO 2 and in the anode by species such as S (or H 2 S), SiO 2 , and P 2 (or PH 3 ). The author hopes the presented fundamental insights can provide a theoretical foundation for searching for better technical solutions to address the critical degradation challenges.

25 ENERGY STORAGE↗

Insights into the phase stability window, phase transformation behavior, and anisotropic thermal expansion of rhombohedral bismuth oxide

Rhombohedral bismuth oxide has emerged as a promising SOFC electrolyte material, particularly at low-to-intermediate temperatures. The stability window of this phase was explored using a co-doped system, using yttrium and lanthanum or aluminum, over 7.5–25 % total dopant content and 0.907–1.154 Å weighted average dopant cationic radius. The phase transformation behavior of rhombohedral-rich phase mixtures was also investigated in situ from 360 to 656 °C to assess the effects of minor impurity phases and thermal evolution pathways. Our results reveal that low-dopant, rhombohedral-rich compositions exhibit poor structural stability upon heating. Anisotropic thermal expansion behavior was observed over 450–656 °C, serving as a sensitive indicator of sequential phase changes, including the rhombohedral β2-to-β1 transition (∼450 °C), monoclinic phase formation, and delayed or incomplete formation of the cubic phase (∼ 550 °C). These multiple unfavorable phase transitions compromise the mechanical robustness required for SOFC operation. This study underscores the need for compositional tuning to balance ionic conductivity with thermal phase stability in rhombohedral Bi 2 O 3 -based systems.

36 MATERIALS SCIENCE↗