Checkpoint Charlie
This commit is contained in:
parent
8da262088c
commit
18b03ff135
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -371,5 +371,6 @@
|
|||||||
/Electrochemical/Cast_Stellite1_Sample1_Actual/OCP.cor filter=lfs diff=lfs merge=lfs -text
|
/Electrochemical/Cast_Stellite1_Sample1_Actual/OCP.cor filter=lfs diff=lfs merge=lfs -text
|
||||||
/Electrochemical/Cast_Stellite1_Sample2_Actual/OCP.cor filter=lfs diff=lfs merge=lfs -text
|
/Electrochemical/Cast_Stellite1_Sample2_Actual/OCP.cor filter=lfs diff=lfs merge=lfs -text
|
||||||
/Electrochemical/Cast_Stellite1_Sample3_Actual/OCP.cor filter=lfs diff=lfs merge=lfs -text
|
/Electrochemical/Cast_Stellite1_Sample3_Actual/OCP.cor filter=lfs diff=lfs merge=lfs -text
|
||||||
|
/Thesis.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
*.jp*g filter=lfs diff=lfs merge=lfs -text
|
*.jp*g filter=lfs diff=lfs merge=lfs -text
|
||||||
*.tif filter=lfs diff=lfs merge=lfs -text
|
*.tif filter=lfs diff=lfs merge=lfs -text
|
||||||
|
BIN
Heriot_Watt_Thesis_Template.pdf
(Stored with Git LFS)
BIN
Heriot_Watt_Thesis_Template.pdf
(Stored with Git LFS)
Binary file not shown.
@ -6,7 +6,7 @@
|
|||||||
\usepackage[T1]{fontenc} % font
|
\usepackage[T1]{fontenc} % font
|
||||||
\usepackage{csquotes}
|
\usepackage{csquotes}
|
||||||
%\usepackage[defernumbers=true, sorting=none]{biblatex}
|
%\usepackage[defernumbers=true, sorting=none]{biblatex}
|
||||||
\usepackage[defernumbers=true, sorting=none, style=authoryear, backend=biber, maxbibnames=999]{biblatex}
|
\usepackage[style=ieee, backend=biber, maxbibnames=999]{biblatex}
|
||||||
|
|
||||||
\usepackage{setspace} % spacing
|
\usepackage{setspace} % spacing
|
||||||
% \usepackage[left=4cm,right=2cm,top=2cm,bottom=2cm]{geometry}
|
% \usepackage[left=4cm,right=2cm,top=2cm,bottom=2cm]{geometry}
|
||||||
|
88
Makefile
Normal file
88
Makefile
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
### latex.makefile
|
||||||
|
# Author: Jason Hiebel
|
||||||
|
|
||||||
|
# This is a simple makefile for compiling LaTeX documents. The core assumption
|
||||||
|
# is that the resulting documents should have any parameters effecting
|
||||||
|
# rendering quality set to theoretical limits and that all fonts should be
|
||||||
|
# embedded. While typically overkill, the detriment to doing so is negligible.
|
||||||
|
|
||||||
|
# Targets:
|
||||||
|
# default : compiles the document to a PDF file using the defined
|
||||||
|
# latex generating engine. (pdflatex, xelatex, etc)
|
||||||
|
# display : displays the compiled document in a common PDF viewer.
|
||||||
|
# (currently linux = evince, OSX = open)
|
||||||
|
# clean : removes the obj/ directory holding temporary files
|
||||||
|
|
||||||
|
PROJECT = Thesis
|
||||||
|
default: obj/$(PROJECT).pdf
|
||||||
|
|
||||||
|
display: default
|
||||||
|
(${PDFVIEWER} obj/$(PROJECT).pdf &)
|
||||||
|
|
||||||
|
|
||||||
|
### Compilation Flags
|
||||||
|
PDFLATEX_FLAGS = -halt-on-error -output-directory obj/
|
||||||
|
|
||||||
|
TEXINPUTS = .:obj/
|
||||||
|
TEXMFOUTPUT = obj/
|
||||||
|
|
||||||
|
|
||||||
|
### File Types (for dependancies)
|
||||||
|
TEX_FILES = $(shell find . -name '*.tex' -or -name '*.sty' -or -name '*.cls')
|
||||||
|
BIB_FILES = $(shell find . -name '*.bib')
|
||||||
|
BST_FILES = $(shell find . -name '*.bst')
|
||||||
|
IMG_FILES = $(shell find . -path '*.jpg' -or -path '*.png' -or \( \! -path './obj/*.pdf' -path '*.pdf' \) )
|
||||||
|
|
||||||
|
|
||||||
|
### Standard PDF Viewers
|
||||||
|
# Defines a set of standard PDF viewer tools to use when displaying the result
|
||||||
|
# with the display target. Currently chosen are defaults which should work on
|
||||||
|
# most linux systems with GNOME installed and on all OSX systems.
|
||||||
|
|
||||||
|
UNAME := $(shell uname)
|
||||||
|
|
||||||
|
ifeq ($(UNAME), Linux)
|
||||||
|
PDFVIEWER = evince
|
||||||
|
endif
|
||||||
|
|
||||||
|
#ifeq ($(UNAME), Darwin)
|
||||||
|
#PDFVIEWER = open
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
### Clean
|
||||||
|
# This target cleans the temporary files generated by the tex programs in
|
||||||
|
# use. All temporary files generated by this makefile will be placed in obj/
|
||||||
|
# so cleanup is easy.
|
||||||
|
|
||||||
|
clean::
|
||||||
|
rm -rf obj/
|
||||||
|
|
||||||
|
### Core Latex Generation
|
||||||
|
# Performs the typical build process for latex generations so that all
|
||||||
|
# references are resolved correctly. If adding components to this run-time
|
||||||
|
# always take caution and implement the worst case set of commands.
|
||||||
|
# Example: latex, bibtex, latex, latex
|
||||||
|
#
|
||||||
|
# Note the use of order-only prerequisites (prerequisites following the |).
|
||||||
|
# Order-only prerequisites do not effect the target -- if the order-only
|
||||||
|
# prerequisite has changed and none of the normal prerequisites have changed
|
||||||
|
# then this target IS NOT run.
|
||||||
|
#
|
||||||
|
# In order to function for projects which use a subset of the provided features
|
||||||
|
# it is important to verify that optional dependancies exist before calling a
|
||||||
|
# target; for instance, see how bibliography files (.bbl) are handled as a
|
||||||
|
# dependency.
|
||||||
|
|
||||||
|
obj/:
|
||||||
|
mkdir -p obj/
|
||||||
|
|
||||||
|
obj/$(PROJECT).aux: $(TEX_FILES) $(IMG_FILES) | obj/
|
||||||
|
xelatex $(PDFLATEX_FLAGS) $(PROJECT)
|
||||||
|
|
||||||
|
obj/$(PROJECT).bbl: $(BIB_FILES) | obj/$(PROJECT).aux
|
||||||
|
bibtex obj/$(PROJECT)
|
||||||
|
xelatex $(PDFLATEX_FLAGS) $(PROJECT)
|
||||||
|
|
||||||
|
obj/$(PROJECT).pdf: obj/$(PROJECT).aux $(if $(BIB_FILES), obj/$(PROJECT).bbl)
|
||||||
|
xelatex $(PDFLATEX_FLAGS) $(PROJECT)
|
1568
Thesis.bbl
Normal file
1568
Thesis.bbl
Normal file
File diff suppressed because it is too large
Load Diff
1568
Thesis.bbl-SAVE-ERROR
Normal file
1568
Thesis.bbl-SAVE-ERROR
Normal file
File diff suppressed because it is too large
Load Diff
10
Thesis.lof
Normal file
10
Thesis.lof
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
\babel@toc {english}{}\relax
|
||||||
|
\contentsline {xpart}{Chapters}{2}{part.1}%
|
||||||
|
\addvspace {10\p@ }
|
||||||
|
\contentsline {xchapter}{Introduction}{2}{chapter.1}%
|
||||||
|
\addvspace {10\p@ }
|
||||||
|
\contentsline {xchapter}{Analytical Investigations}{8}{chapter.2}%
|
||||||
|
\addvspace {10\p@ }
|
||||||
|
\contentsline {xchapter}{Experimental Investigations}{9}{chapter.3}%
|
||||||
|
\addvspace {10\p@ }
|
||||||
|
\contentsline {xchapter}{Discussion}{10}{chapter.4}%
|
11
Thesis.lot
Normal file
11
Thesis.lot
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
\babel@toc {english}{}\relax
|
||||||
|
\contentsline {xpart}{Chapters}{2}{part.1}%
|
||||||
|
\addvspace {10\p@ }
|
||||||
|
\contentsline {xchapter}{Introduction}{2}{chapter.1}%
|
||||||
|
\contentsline {table}{\numberline {1.1}{\ignorespaces Stellite Compositions}}{4}{table.caption.7}%
|
||||||
|
\addvspace {10\p@ }
|
||||||
|
\contentsline {xchapter}{Analytical Investigations}{8}{chapter.2}%
|
||||||
|
\addvspace {10\p@ }
|
||||||
|
\contentsline {xchapter}{Experimental Investigations}{9}{chapter.3}%
|
||||||
|
\addvspace {10\p@ }
|
||||||
|
\contentsline {xchapter}{Discussion}{10}{chapter.4}%
|
6
Thesis.maf
Normal file
6
Thesis.maf
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
Thesis.mtc
|
||||||
|
Thesis.mtc0
|
||||||
|
Thesis.mtc4
|
||||||
|
Thesis.mtc3
|
||||||
|
Thesis.mtc2
|
||||||
|
Thesis.mtc1
|
0
Thesis.mtc
Normal file
0
Thesis.mtc
Normal file
0
Thesis.mtc0
Normal file
0
Thesis.mtc0
Normal file
12
Thesis.mtc1
Normal file
12
Thesis.mtc1
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {1.1}Table: Show the table of stellite compositions}{\reset@font\mtcSfont 3}{section.1.1}}
|
||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {1.2}Table: Show the table of stellite compositions}{\reset@font\mtcSfont 3}{section.1.2}}
|
||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {1.3}Paragraph 4: Synergistic Challenges in Applications Prone to Corrosion and Cavitation\hfill {}\textsc {ignore}}{\reset@font\mtcSfont 5}{section.1.3}}
|
||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {1.4}Paragraph 5: Research and Development for Enhanced Corrosion and Cavitation Performance\hfill {}\textsc {ignore}}{\reset@font\mtcSfont 5}{section.1.4}}
|
||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {1.5}Paragraph 6: Influence of HIPing\hfill {}\textsc {ignore}}{\reset@font\mtcSfont 5}{section.1.5}}
|
||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {1.6}General Background}{\reset@font\mtcSfont 5}{section.1.6}}
|
||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {1.7}Stellite 1}{\reset@font\mtcSfont 7}{section.1.7}}
|
||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {1.8}Stellites}{\reset@font\mtcSfont 7}{section.1.8}}
|
||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {1.9}Objectives and Scope of the Research Work}{\reset@font\mtcSfont 7}{section.1.9}}
|
||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {1.10}Thesis Outline}{\reset@font\mtcSfont 7}{section.1.10}}
|
||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {1.11}Literature Survey}{\reset@font\mtcSfont 7}{section.1.11}}
|
||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {1.12}Cavitation Tests}{\reset@font\mtcSfont 7}{section.1.12}}
|
0
Thesis.mtc2
Normal file
0
Thesis.mtc2
Normal file
1
Thesis.mtc3
Normal file
1
Thesis.mtc3
Normal file
@ -0,0 +1 @@
|
|||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {3.1}Materials and Microstructure}{\reset@font\mtcSfont 9}{section.3.1}}
|
5
Thesis.mtc4
Normal file
5
Thesis.mtc4
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {4.1}Experimental Test Procedure}{\reset@font\mtcSfont 10}{section.4.1}}
|
||||||
|
{\reset@font\mtcSSfont\mtc@string\contentsline{subsection}{\noexpand \leavevmode \numberline {4.1.1}Hardness Tests}{\reset@font\mtcSSfont 10}{subsection.4.1.1}}
|
||||||
|
{\reset@font\mtcSSfont\mtc@string\contentsline{subsection}{\noexpand \leavevmode \numberline {4.1.2}Cavitation}{\reset@font\mtcSSfont 10}{subsection.4.1.2}}
|
||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {4.2}Relationships between cavitation erosion resistance and mechanical properties}{\reset@font\mtcSfont 10}{section.4.2}}
|
||||||
|
{\reset@font\mtcSfont\mtc@string\contentsline{section}{\noexpand \leavevmode \numberline {4.3}Influence of vibratory amplitude}{\reset@font\mtcSfont 10}{section.4.3}}
|
BIN
Thesis.pdf
(Stored with Git LFS)
Normal file
BIN
Thesis.pdf
(Stored with Git LFS)
Normal file
Binary file not shown.
375
Thesis.tex
375
Thesis.tex
@ -1,40 +1,58 @@
|
|||||||
%%%%
|
% Created 2025-05-11 ح 23:09
|
||||||
%% This Source Code Form is subject to the terms of the MIT License.
|
% Intended LaTeX compiler: pdflatex
|
||||||
%% If a copy of the MIT was not distributed with this file, You can obtain one at https://opensource.org/licenses/mit
|
\documentclass[11pt]{report}
|
||||||
%%
|
\usepackage[utf8]{inputenc}
|
||||||
%% Last update: 2024/03/11
|
\usepackage[T1]{fontenc}
|
||||||
%%
|
\usepackage{graphicx}
|
||||||
%% author: Dorian Gouzou <jackred@tuta.io>
|
\usepackage{longtable}
|
||||||
%% repository hosted on github at https://github.com/jackred/Heriot_Watt_Thesis_Template
|
\usepackage{wrapfig}
|
||||||
%%%%
|
\usepackage{rotating}
|
||||||
\documentclass[12pt,a4paper]{report}
|
\usepackage[normalem]{ulem}
|
||||||
|
\usepackage{amsmath}
|
||||||
|
\usepackage{amssymb}
|
||||||
|
\usepackage{capt-of}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{booktabs}
|
||||||
|
\graphicspath{{expt/}}
|
||||||
\input{I-packages}
|
\input{I-packages}
|
||||||
\input{I-config}
|
\input{I-config}
|
||||||
\input{I-info}
|
\input{I-info}
|
||||||
\input{I-glossary}
|
\input{I-glossary}
|
||||||
\input{I-packages-2} % some package need to be loaded last in preamble
|
\input{I-packages-2}
|
||||||
|
% some package need to be loaded last in preamble
|
||||||
|
\usepackage{multirow}
|
||||||
|
\usepackage[flushleft]{threeparttable} % http://ctan.org/pkg/threeparttable
|
||||||
|
\usepackage{booktabs,caption}
|
||||||
|
\date{}
|
||||||
|
\title{}
|
||||||
|
\hypersetup{
|
||||||
|
pdfauthor={Vishakh Pradeep Kumar},
|
||||||
|
pdftitle={},
|
||||||
|
pdfkeywords={},
|
||||||
|
pdfsubject={},
|
||||||
|
pdfcreator={Emacs 30.1 (Org mode 9.7.29)},
|
||||||
|
pdflang={English}}
|
||||||
|
\usepackage{biblatex}
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
\dominitoc
|
\dominitoc
|
||||||
|
|
||||||
\pagestyle{empty}
|
\pagestyle{empty}
|
||||||
\input{Preliminaries/1-titlepages}
|
\input{preliminaries/1-titlepages}
|
||||||
\clearpage
|
\clearpage
|
||||||
% % remove this line if you don't want pagination on preliminary pages
|
% % remove this line if you don't want pagination on preliminary pages
|
||||||
% % also read the comment below, for table of content and other
|
% % also read the comment below, for table of content and other
|
||||||
% \pagestyle{preliminary}
|
% \pagestyle{preliminary}
|
||||||
\input{Preliminaries/2-abstract}
|
\input{preliminaries/2-abstract}
|
||||||
\clearpage
|
\clearpage
|
||||||
%\input{Preliminaries/3-dedication}
|
%\input{Preliminaries/3-dedication}
|
||||||
%\clearpage
|
%\clearpage
|
||||||
\input{Preliminaries/4-acknowledgments}
|
\input{preliminaries/4-acknowledgments}
|
||||||
\clearpage
|
\clearpage
|
||||||
% % read about declaration in file
|
% % read about declaration in file
|
||||||
% % \input{Preliminaries/5-declaration}
|
% % \input{Preliminaries/5-declaration}
|
||||||
\includepdf[pages=-]{Preliminaries/5-declaration.pdf}
|
\includepdf[pages=-]{preliminaries/5-declaration.pdf}
|
||||||
|
|
||||||
{
|
{
|
||||||
\setstretch{1}
|
\setstretch{1}
|
||||||
\hypersetup{linkcolor=black}
|
\hypersetup{linkcolor=black}
|
||||||
@ -52,68 +70,277 @@
|
|||||||
\end{refsection}
|
\end{refsection}
|
||||||
}
|
}
|
||||||
|
|
||||||
%% if you don't want pagination you need to use this commented part instead of the one above for the table of content/list of figure/etc
|
|
||||||
%% this is because the toc is defined in an annoying way, especially multi page one
|
|
||||||
%% solution found here: https://tex.stackexchange.com/a/173423
|
|
||||||
% {
|
|
||||||
% \hypersetup{linkcolor=black}
|
|
||||||
% \pagestyle{empty} % Removes numbers from middle pages.
|
|
||||||
% \fancypagestyle{plain} % Re-definition removes numbers from first page.
|
|
||||||
% {
|
|
||||||
% \fancyhf{}% % Clear all header and footer fields.
|
|
||||||
% \renewcommand{\headrulewidth}{0pt}% Clear rules (remove these two lines if not desired).
|
|
||||||
% \renewcommand{\footrulewidth}{0pt}%
|
|
||||||
% }
|
|
||||||
% \tableofcontents
|
|
||||||
% \thispagestyle{empty}
|
|
||||||
% \listoftables %optional
|
|
||||||
% \thispagestyle{empty}
|
|
||||||
% \listoffigures %optional
|
|
||||||
% \thispagestyle{empty}
|
|
||||||
% \glsaddall % this is to include all acronym. You can do a sort of citation for acronym and include only the one you use, Look at the glossary package for details.
|
|
||||||
% \printnoidxglossary[type=\acronymtype, title=Glossary] % optional
|
|
||||||
% \thispagestyle{empty}
|
|
||||||
% %% put your publications in BibMine.bib
|
|
||||||
% %% They will be displayed here
|
|
||||||
% \begin{refsection}[BibMine.bib]
|
|
||||||
% \DeclareFieldFormat{labelnumberwidth}{#1}
|
|
||||||
% \nocite{*}
|
|
||||||
% \printbibliography[omitnumbers=true,title={List of Publications}]
|
|
||||||
% \end{refsection}
|
|
||||||
% \thispagestyle{empty}
|
|
||||||
% }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
\clearpage
|
\clearpage
|
||||||
|
|
||||||
\pagestyle{chapter}
|
\pagestyle{chapter}
|
||||||
\subfile{Chapters/Cavitation}
|
\part{Chapters}
|
||||||
\subfile{Chapters/Chapter1-Introduction}
|
\label{sec:org3bdb98f}
|
||||||
\subfile{Chapters/Chapter2}
|
|
||||||
\subfile{Chapters/Chapter3}
|
|
||||||
\appendix
|
|
||||||
\subfile{Appendices/Appendix1}
|
|
||||||
|
|
||||||
%% add publications in pdf format
|
\chapter{Introduction}
|
||||||
\clearpage
|
\label{sec:org28b34e8}
|
||||||
\stepcounter{chapter}
|
|
||||||
\addcontentsline{toc}{chapter}{\thechapter\ \ \ \ Publication 1}
|
|
||||||
\includepdf[pages=-]{Publications/Publication1.pdf}
|
|
||||||
|
|
||||||
|
|
||||||
%% using biblatex rather than bibtex to easily have further reading and references
|
Stellites are a cobalt-base superalloy used in aggresive service environments due to retention of strength, wear resistance, and oxidation resistance at high temperature \cite{ahmedStructurePropertyRelationships2014}.
|
||||||
%% you need to remove the cache file when adding files to the bibliography
|
|
||||||
%% Log and output files > trash icons in Overleaf
|
|
||||||
%% sorted by citation
|
|
||||||
\label{Bibliography}
|
|
||||||
\printbibliography[title={References}, heading=bibintoc, resetnumbers=true]
|
|
||||||
%% sorted by alphabetical order, using author name
|
|
||||||
%\begin{refsection}
|
|
||||||
%\DeclareFieldFormat{labelnumberwidth}{#1}
|
|
||||||
%\nocite{*}
|
|
||||||
%\printbibliography[title={Bibliography}, notcategory=cited, omitnumbers=true, heading=bibintoc]
|
|
||||||
%\end{refsection}
|
|
||||||
|
|
||||||
|
Originating in 1907 with Elwood Haynes's development of alloys like Stellite 6, Stellites quickly found use in orthopedic implants, machine tools, and nuclear components, and new variations on the original CoCrWC and CoCrMoC alloys are spreading to new sectors like oil \& gas and chemical processing \cite{malayogluComparingPerformanceHIPed2003, ahmedStructurePropertyRelationships2014}.
|
||||||
|
|
||||||
|
Stellites generally contain 25-33 wt Cr, 4-18 W/Mo, and 0.1-3.3 wt C, with a microstructure consisting of a CoCr(W,Mo) matrix with solid solution strengthening, with hard carbide phases, usually with Cr (e.g., \(M_{7}C_{3}\), \(M_{23}C_{6}\)), and W/Mo (e.g. \(MC\), \(M_{6}C\) ); the proportion and type of carbides depend on carbon content and the relative amounts of carbon with carbide formers (Cr, W, Mo), as well as processing routes. In addition to the solid solution toughness and carbide hardness, the stress-induced FCC tp HCP phase transformation of the Co-based solid solution further increases wear resistance through work hardening.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The remarkable ability of Stellite alloys to withstand these specific challenges stems from key metallurgical features. Their corrosion resistance is primarily attributed to a high chromium content, typically 20-30 wt.\%, which promotes the formation of a highly stable, tenacious, and self-healing chromium-rich passive oxide film on the material's surface; this film acts as a barrier isolating the underlying alloy from the corrosive environment. Alloying elements such as molybdenum and tungsten can further enhance this passivity, particularly improving resistance to localized corrosion phenomena like pitting and crevice corrosion in aggressive media. Concurrently, their outstanding cavitation resistance is largely derived from the unique behavior of the cobalt-rich matrix, which can undergo a stress-induced crystallographic transformation from a face-centered cubic (fcc) to a hexagonal close-packed (hcp) structure. This transformation, often facilitated by mechanical twinning, effectively absorbs the intense, localized impact energy from collapsing cavitation bubbles and leads to significant work hardening, thereby impeding material detachment and erosion.
|
||||||
|
|
||||||
|
|
||||||
|
Stellites generally contain 25-33 wt Cr, 4-18 W/Mo, and 0.1-3.3 wt C, with a microstructure consisting of a CoCr(W,Mo) matrix with solid solution strengthening, with hard carbide phases, usually with Cr (e.g., \(M_{7}C_{3}\), \(M_{23}C_{6}\)), and W/Mo (e.g. \(MC\), \(M_{6}C\) ); the proportion and type of carbides depend on carbon content and the relative amounts of carbon with carbide formers (Cr, W, Mo), as well as processing routes. In addition to the solid solution toughness and carbide hardness, the stress-induced FCC tp HCP phase transformation of the Co-based solid solution further increases wear resistance through work hardening.
|
||||||
|
\section{Table: Show the table of stellite compositions}
|
||||||
|
\label{sec:org128a963}
|
||||||
|
\section{Table: Show the table of stellite compositions}
|
||||||
|
\label{sec:org513cc9c}
|
||||||
|
|
||||||
|
\begin{LaTeX}
|
||||||
|
\begin{landscape}
|
||||||
|
\begin{table}
|
||||||
|
\caption{Stellite Compositions}
|
||||||
|
\label{tab:stellite_composition}
|
||||||
|
\begin{threeparttable}
|
||||||
|
\begin{tabular}{lllllllllllllllll}
|
||||||
|
&
|
||||||
|
\multicolumn{2}{c}{Base} &
|
||||||
|
\multicolumn{2}{c}{Refractory} &
|
||||||
|
Carbon &
|
||||||
|
\multicolumn{8}{c}{Others} &
|
||||||
|
&
|
||||||
|
&
|
||||||
|
\\
|
||||||
|
Alloy &
|
||||||
|
\multicolumn{1}{c}{\textbf{Co}} &
|
||||||
|
\multicolumn{1}{c}{\textbf{Cr}} &
|
||||||
|
\multicolumn{1}{c}{\textbf{W}} &
|
||||||
|
\multicolumn{1}{c}{\textbf{Mo}} &
|
||||||
|
\multicolumn{1}{c}{\textbf{C}} &
|
||||||
|
\multicolumn{1}{c}{\textbf{Fe}} &
|
||||||
|
\multicolumn{1}{c}{\textbf{Ni}} &
|
||||||
|
\multicolumn{1}{c}{\textbf{Si}} &
|
||||||
|
\multicolumn{1}{c}{\textbf{P}} &
|
||||||
|
\multicolumn{1}{c}{\textbf{S}} &
|
||||||
|
\multicolumn{1}{c}{\textbf{B}} &
|
||||||
|
\multicolumn{1}{c}{\textbf{Ln}} &
|
||||||
|
\multicolumn{1}{c}{\textbf{Mn}} &
|
||||||
|
\multicolumn{1}{c}{\textbf{Ref}} &
|
||||||
|
\multicolumn{1}{c}{\textbf{Process Type}} &
|
||||||
|
\multicolumn{1}{c}{\textbf{Observation}} \\
|
||||||
|
|
||||||
|
\hline
|
||||||
|
\multirow{4}{*}{Stellite 1}
|
||||||
|
& 41.1 & 30.5 & 12.5 & & 2.4 & <5 & <3.5 & <2 & & & <1 & & <2 & \cite{davis2000nickel} & & \\
|
||||||
|
& 47.7 & 30 & 13 & 0.5 & 2.5 & 3 & 1.5 & 1.3 & & & & & 0.5 & \cite{davis2000nickel} & & \\
|
||||||
|
& 48.6 & 33 & 12.5 & 0 & 2.5 & 1 & 1 & 1.3 & & & & & 0.1 & \cite{alimardaniEffectLocalizedDynamic2010} & & \\
|
||||||
|
& 46.84 & 31.7 & 12.7 & 0.29 & 2.47 & 2.3 & 2.38 & 1.06 & & & & & 0.26 & \cite{ahmedMappingMechanicalProperties2023} & HIPed & ICP-OES \\
|
||||||
|
|
||||||
|
\hline
|
||||||
|
\multirow{2}{*}{Stellite 3}
|
||||||
|
& 50.5 & 33 & 14 & & 2.5 & & & & & & & & & \cite{bunchCorrosionGallingResistant1989} & & \\
|
||||||
|
& 49.24 & 29.57 & 12.07 & 0.67 & 2.52 & 2.32 & 1.07 & 1.79 & & & & & 0.75 & \cite{ratiaComparisonSlidingWear2019} & HIPed & ICP-OES and combustion infrared detection for C \\
|
||||||
|
|
||||||
|
\hline
|
||||||
|
\multirow{5}{*}{Stellite 4}
|
||||||
|
& 45.43 & 30 & 14 & 1 & 0.57 & 3 & 3 & 2 & & & & & 1 & \cite{davis2000nickel} & & \\
|
||||||
|
& 51.5 & 30 & 14 & & 1 & 1 & 2 & 0.5 & & & & & & \cite{zhangFrictionWearCharacterization2002} & & \\
|
||||||
|
& 51.9 & 33 & 14 & & 1.1 & & & & & & & & & \cite{bunchCorrosionGallingResistant1989} & & \\
|
||||||
|
& 49.41 & 31 & 14 & 0.12 & 0.67 & 2.16 & 1.82 & 1.04 & & & & & 0.26 & \cite{ahmedMappingMechanicalProperties2023} & HIPed & ICP-OES \\
|
||||||
|
& 50.2 & 29.8 & 14.4 & 0 & 0.7 & 1.9 & 1.9 & 0.8 & & & & & 0.3 & \cite{ashworthMicrostructurePropertyRelationships1999} & HIPed & \\
|
||||||
|
|
||||||
|
\hline
|
||||||
|
\multirow{10}{*}{Stellite 6}
|
||||||
|
& 51.5 & 28.5 & 4.5 & 1.5 & 1 & 5 & 3 & 2 & & & 1 & & 2 & \cite{davis2000nickel} & & \\
|
||||||
|
& 63.81 & 27.08 & 5.01 & & 0.96 & 0.73 & 0.87 & 1.47 & & & & & 0.07 & \cite{ratiaComparisonSlidingWear2019} & HIPed & ICP-OES and combustion infrared detection for C \\
|
||||||
|
& 60.3 & 29 & 4.5 & & 1.2 & 2 & 2 & 1 & & & & & & \cite{zhangFrictionWearCharacterization2002} & & \\
|
||||||
|
& 61.7 & 27.5 & 4.5 & 0.5 & 1.15 & 1.5 & 1.5 & 1.15 & & & & & 0.5 & \cite{bunchCorrosionGallingResistant1989} & & \\
|
||||||
|
& 58.46 & 29.5 & 4.6 & 0.22 & 1.09 & 2.09 & 2.45 & 1.32 & & & & & 0.27 & \cite{ahmedMappingMechanicalProperties2023} & HIPed & ICP-OES \\
|
||||||
|
& 58.04 & 30.59 & 4.72 & & 1.24 & 2.03 & 1.87 & 0.80 & 0.01 & 0.01 & & & & \cite{ferozhkhanMetallurgicalStudyStellite2017} & PTAW & OES \\
|
||||||
|
& 55.95 & 27.85 & 3.29 & & 0.87 & 6.24 & 3.63 & 1.23 & 0.01 & 0.01 & & & 0.45 & \cite{ferozhkhanMetallurgicalStudyStellite2017} & GTAW & OES \\
|
||||||
|
& 52.40 & 30.37 & 3.57 & & 0.96 & 6.46 & 3.93 & 1.70 & 0.01 & 0.01 & & & 0.3 & \cite{ferozhkhanMetallurgicalStudyStellite2017} & SMAW & OES \\
|
||||||
|
& 60.3 & & 31.10 & 4.70 & 0.30 & 1.10 & 1.70 & 1.50 & 1.30 & & 0.00 & & 0.3 & \cite{pacquentinTemperatureInfluenceRepair2025} & LP-DED & ICP-AES \& GDMS \\
|
||||||
|
& 60.6 & 27.7 & 5 & 0 & 1.2 & 1.9 & 2 & 1.3 & & & & & 0.3 & \cite{ashworthMicrostructurePropertyRelationships1999} & HIPed & \\
|
||||||
|
|
||||||
|
\hline
|
||||||
|
Stellite 7
|
||||||
|
& 64 & 25.9 & 4.9 & 0 & 0.5 & 1.5 & 1.1 & 1.1 & & & & & 1 & \cite{ashworthMicrostructurePropertyRelationships1999} & HIPed & \\
|
||||||
|
|
||||||
|
\hline
|
||||||
|
\multirow{2}{*}{Stellite 12}
|
||||||
|
& 53.6 & 30 & 8.3 & & 1.4 & 3 & 1.5 & 0.7 & & & & & 1.5 & \cite{davis2000nickel} & & \\
|
||||||
|
& 55.22 & 29.65 & 8.15 & 0.2 & 1.49 & 2.07 & 2.04 & 0.91 & & & & & 0.27 & \cite{ahmedMappingMechanicalProperties2023} & HIPed & ICP-OES \\
|
||||||
|
|
||||||
|
Stellite 19
|
||||||
|
& 50.94 & 31.42 & 10.08 & 0.79 & 2.36 & 1.82 & 2 & 0.4 & & & 0.09 & & 0.1 & \cite{desaiEffectCarbideSize1984} & & \\
|
||||||
|
|
||||||
|
\multirow{2}{*}{Stellite 20}
|
||||||
|
& 41.05 & 33 & 17.5 & & 2.45 & 2.5 & 2.5 & & & & & & 1 & \cite{davis2000nickel} & & \\
|
||||||
|
& 43.19 & 31.85 & 16.3 & 0.27 & 2.35 & 2.5 & 2.28 & 1 & & & & & 0.26 & \cite{ahmedMappingMechanicalProperties2023} & HIPed & ICP-OES \\
|
||||||
|
|
||||||
|
|
||||||
|
\multirow{2}{*}{Stellite 21}
|
||||||
|
& 59.493 & 27 & & 5.5 & 0.25 & 3 & 2.75 & 1 & & & 0.007 & & 1 & \cite{davis2000nickel} & & \\
|
||||||
|
& 60.6 & 26.9 & 0 & 5.7 & 0.2 & 1.3 & 2.7 & 1.9 & & & & & 0.7 & \cite{ashworthMicrostructurePropertyRelationships1999} & HIPed & \\
|
||||||
|
|
||||||
|
Stellite 22
|
||||||
|
& 54 & 27 & & 11 & 0.25 & 3 & 2.75 & 1 & & & & & 1 & \cite{davis2000nickel} & & \\
|
||||||
|
|
||||||
|
Stellite 23
|
||||||
|
& 65.5 & 24 & 5 & & 0.4 & 1 & 2 & 0.6 & & & & & 0.3 & \cite{davis2000nickel} & & \\
|
||||||
|
|
||||||
|
Stellite 25
|
||||||
|
& 49.4 & 20 & 15 & & 0.1 & 3 & 10 & 1 & & & & & 1.5 & \cite{davis2000nickel} & & \\
|
||||||
|
|
||||||
|
Stellite 27
|
||||||
|
& 35 & 25 & & 5.5 & 0.4 & 1 & 32 & 0.6 & & & & & 0.3 & \cite{davis2000nickel} & & \\
|
||||||
|
|
||||||
|
Stellite 30
|
||||||
|
& 50.5 & 26 & & 6 & 0.45 & 1 & 15 & 0.6 & & & & & 0.6 & \cite{davis2000nickel} & & \\
|
||||||
|
|
||||||
|
\multirow{2}{*}{Stellite 31}
|
||||||
|
& 57.5 & 22 & 7.5 & & 0.5 & 1.5 & 10 & 0.5 & & & & & 0.5 & \cite{davis2000nickel} & & \\
|
||||||
|
& 52.9 & 25.3 & 7.8 & 0 & 0.5 & 1.1 & 11.4 & 0.6 & & & & & 0.4 & \cite{ashworthMicrostructurePropertyRelationships1999} & HIPed & \\
|
||||||
|
|
||||||
|
Stellite 80
|
||||||
|
& 44.6 & 33.5 & 19 & & 1.9 & & & & & & 1 & & & \cite{davis2000nickel} & & \\
|
||||||
|
|
||||||
|
Stellite 188
|
||||||
|
& 37.27 & 22 & 14 & & 0.1 & 3 & 22 & 0.35 & & & & 0.03 & 1.25 & \cite{davis2000nickel} & & \\
|
||||||
|
|
||||||
|
\multirow{2}{*}{Stellite 190}
|
||||||
|
& 46.7 & 27 & 14 & 1 & 3.3 & 3 & 3 & 1 & & & & & 1 & \cite{davis2000nickel} & & \\
|
||||||
|
& 48.72 & 27.25 & 14.4 & 0.2 & 3.21 & 2.1 & 2.81 & 1 & & & & & 0.31 & \cite{ahmedMappingMechanicalProperties2023} & HIPed\tnote{a} & ICP-OES\tnote{*} \\
|
||||||
|
|
||||||
|
Stellite 300
|
||||||
|
& 44.5 & 22 & 32 & & 1.5 & & & & & & & & & \cite{davis2000nickel} & & \\
|
||||||
|
|
||||||
|
Stellite 694
|
||||||
|
& 45 & 28 & 19 & & 1 & 5 & & 1 & & & & & 1 & \cite{davis2000nickel} & & \\
|
||||||
|
|
||||||
|
Stellite 703
|
||||||
|
& 44.6 & 32 & & 12 & 2.4 & 3 & 3 & 1.5 & & & & & 1.5 & \cite{davis2000nickel} & & \\
|
||||||
|
|
||||||
|
Stellite 706
|
||||||
|
& 55.8 & 29 & & 5 & 1.2 & 3 & 3 & 1.5 & & & & & 1.5 & \cite{davis2000nickel} & & \\
|
||||||
|
|
||||||
|
Stellite 712
|
||||||
|
& 51.5 & 29 & & 8.5 & 2 & 3 & 3 & 1.5 & & & & & 1.5 & \cite{davis2000nickel} & & \\
|
||||||
|
|
||||||
|
Stellite 720
|
||||||
|
& 37.2 & 33 & & 18 & 2.5 & 3 & 3 & 1.5 & & & 0.3 & & 1.5 & \cite{davis2000nickel} & & \\
|
||||||
|
|
||||||
|
\end{tabular}
|
||||||
|
\begin{tablenotes}
|
||||||
|
\item[*] The footnote text.
|
||||||
|
\item[a] Another footnote.
|
||||||
|
\end{tablenotes}
|
||||||
|
\end{threeparttable}
|
||||||
|
\end{table}
|
||||||
|
\end{landscape}
|
||||||
|
\end{LaTeX}
|
||||||
|
\section{Paragraph 4: Synergistic Challenges in Applications Prone to Corrosion and Cavitation\hfill{}\textsc{ignore}}
|
||||||
|
\label{sec:org567a79b}
|
||||||
|
|
||||||
|
|
||||||
|
\section{Paragraph 5: Research and Development for Enhanced Corrosion and Cavitation Performance\hfill{}\textsc{ignore}}
|
||||||
|
\label{sec:org17e97e5}
|
||||||
|
|
||||||
|
|
||||||
|
\section{Paragraph 6: Influence of HIPing\hfill{}\textsc{ignore}}
|
||||||
|
\label{sec:org5332b96}
|
||||||
|
|
||||||
|
Compared with the case alloys, the HIPed alloys had relatively finer, rounded, and distributed carbides.
|
||||||
|
\section{General Background}
|
||||||
|
\label{sec:org7bfce2d}
|
||||||
|
\%\% have a mini table of content at the start of the chapter
|
||||||
|
\{
|
||||||
|
\hypersetup{linkcolor=black}
|
||||||
|
\minitoc
|
||||||
|
\}
|
||||||
|
|
||||||
|
\%cite:@Franc2004265, @Romo201216, @Kumar2024, @Kim200685, @Gao2024, @20221xix, @Usta2023, @Cheng2023, @Zheng2022
|
||||||
|
|
||||||
|
Cavitation erosion presents a significant challenge in materials degradation in various industrial sectors, including hydroelectric power, marine propulsion, and nuclear systems, stemming from a complex interaction between fluid dynamics and material response \cite{francCavitationErosion2005, romoCavitationHighvelocitySlurry2012}. Hydrodynamically, the phenomenon initiates with the formation and subsequent violent collapse of vapor bubbles within a liquid, triggered by local pressures dropping to the saturated vapor pressure. These implosions generate intense, localized shockwaves and high-speed microjets that repeatedly impact adjacent solid surfaces \cite{gevariDirectIndirectThermal2020}. From a materials perspective, these impacts induce high stresses (100-1000 MPa) and high strain rates, surpassing material thresholds and leading to damage accumulation via plastic deformation, work hardening, fatigue crack initiation and propagation, and eventual material detachment. Mitigating this requires materials capable of effectively absorbing or resisting this dynamic loading, often under demanding conditions that may also include corrosion.
|
||||||
|
|
||||||
|
Stellite alloys, cobalt-chromium formulations that contain carbon, tungsten and/or molybdenum, represent a critical class of materials renowned for their wear resistance in such harsh environments \cite{shinEffectMolybdenumMicrostructure2003}. Their performance stems from a composite-like microstructure combining a strong cobalt-rich matrix, strengthened by solid solutions of Cr and W/Mo, with hard carbide precipitates (e.g., M7C3, M23C6) that impede wear and crack propagation \cite{ahmedSlidingWearBlended2021a, crookCobaltbaseAlloysResist1994}.
|
||||||
|
|
||||||
|
\% Martensitic transformation
|
||||||
|
Crucially, the cobalt matrix often possesses a low stacking fault energy, facilitating a strain-induced martensitic transformation from a metastable face-centered cubic \(\gamma\) phase to a hexagonal close-packed \(\epsilon\) phase under the intense loading of cavitation. This transformation is a primary mechanism for dissipating impact energy and enhancing work hardening, contributing significantly to Stellite's characteristic cavitation resistance \cite{huangMicrostructureEvolutionMartensite2023, tawancyFccHcpTransformation1986}.
|
||||||
|
|
||||||
|
HIPing is a thermo-mechanical material processing technique which involves the simultaneous application of pressure (up to 200 MPa) and temperature (2000 C), which results in casting densification, porosity closure, and metallurgical bonding. \cite{yuComparisonTriboMechanicalProperties2007}
|
||||||
|
|
||||||
|
While commonly applied via casting or weld overlays, processing routes like Hot Isostatic Pressing (HIP) offer potential advantages such as microstructure refinement \cite{stoicaInfluenceHeattreatmentSliding2005} finer microstructures and enhanced fatigue resistance \cite{ahmedInfluenceReHIPingStructure2013, yuComparisonTriboMechanicalProperties2007}.
|
||||||
|
|
||||||
|
HIPing of surface coatings results in microstructure refinement, which can yield improved fatigue and fracture resistance.
|
||||||
|
|
||||||
|
HIPing leads to carbide refinement, which can yield improved impact toughness \cite{yuInfluenceManufacturingProcess2008}, and reduce carbide brittleness \cite{yuComparisonTriboMechanicalProperties2007}.
|
||||||
|
|
||||||
|
Furthermore, HIP facilitates the consolidation of novel 'blended' alloys created from mixed elemental or pre-alloyed powders, providing a pathway to potentially tailor compositions or microstructures for optimized performance. However, despite the prevalence of Stellite alloys and the known influence of processing on microstructure and properties, the specific cavitation erosion behavior of HIP-consolidated Stellites, particularly these blended formulations, remains underexplored in academic literature. Given that erosion mechanisms in Stellites often involve interactions at the carbide-matrix interface \cite{szalaEffectNitrogenIon2021}, understanding how HIP processing and compositional blending affect these interfaces and the matrix's transformative capacity under cavitation, especially when potentially coupled with corrosion, constitutes a critical knowledge gap addressed by this research.
|
||||||
|
|
||||||
|
|
||||||
|
\% Need to describe Stellite 1
|
||||||
|
\section{Stellite 1}
|
||||||
|
|
||||||
|
Stellite 1 is a high-carbon and high-tungsten alloy, making it suitable for demanding applications that require hardness \& toughness to combat sliding \& abrasive wear \cite{crookCobaltbaseAlloysResist1994}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\section{Stellites}
|
||||||
|
\section{Objectives and Scope of the Research Work}
|
||||||
|
\section{Thesis Outline}
|
||||||
|
\section{Literature Survey}
|
||||||
|
\section{Cavitation Tests}
|
||||||
|
\chapter{Analytical Investigations}
|
||||||
|
\label{sec:org23cd51a}
|
||||||
|
\chapter{Experimental Investigations}
|
||||||
|
\label{sec:orgcbd56dc}
|
||||||
|
|
||||||
|
\section{Materials and Microstructure}
|
||||||
|
\label{sec:org409eb92}
|
||||||
|
|
||||||
|
The HIPed alloy was produced via canning the gas-atomized powders at 1200C and 100 MPa pressure for 4h, while the cast alloys were produced via sand casting.
|
||||||
|
\% Sieve analysis and description of powders
|
||||||
|
|
||||||
|
\% Refer to Table of chemical compositions of both cast and HIPed alloys.
|
||||||
|
|
||||||
|
The microstructure of the alloys were observed via SEM in BSE mode, and the chemical compositions of the identified phases developed in the alloys were determined via EDS as well as with XRD under Cu \(K_{\alpha}\) radiation.
|
||||||
|
|
||||||
|
Image analysis was also conducted to ascertain the volume fractions of individual phases.
|
||||||
|
|
||||||
|
|
||||||
|
The Vickers microhardness was measured using a Wilson hardness tester under loads of BLAH. Thirty measurements under each load were conducted on each sample.
|
||||||
|
\chapter{Discussion}
|
||||||
|
\label{sec:orgc69eb40}
|
||||||
|
\section{Experimental Test Procedure}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\subsection{Hardness Tests}
|
||||||
|
|
||||||
|
|
||||||
|
\subsection{Cavitation}
|
||||||
|
|
||||||
|
|
||||||
|
\section{Relationships between cavitation erosion resistance and mechanical properties}
|
||||||
|
|
||||||
|
\section{Influence of vibratory amplitude}
|
||||||
|
|
||||||
|
\% Insert the whole spiel by that French dude about displacement and pressure (and then ruin it)
|
||||||
|
The pressure of the solution depends on the amplitude of the vibratory tip attached to the ultrasonic device. Under simple assumptions, kinetic energy of cavitation is proportional to the square of the amplitude and maximum hammer pressure is proportional to A.
|
||||||
|
|
||||||
|
\begin{align}
|
||||||
|
x &= A sin(2 \pi f t) \\
|
||||||
|
v &= \frac{dx}{dt} = 2 \pi f A sin(2 \pi f t) \\
|
||||||
|
v_{max} &= 2 \pi f A \\
|
||||||
|
v_{mean} &= \frac{1}{\pi} \int^\pi_0 A sin(2 \pi f t) = 4 f A \\
|
||||||
|
\end{align}
|
||||||
|
|
||||||
|
However, several researchers have found that erosion rates are not proportional to the second power of amplitude, but instead a smaller number.
|
||||||
|
Thiruvengadum \cite{thiruvengadamTheoryErosion1967} and Hobbs find that erosion rates are proportional to the 1.8 and 1.5 power of peak-to-peak amplitude.
|
||||||
|
Tomlinson et al find that erosion rate is linearly proportional to peak-to-peak amplitude in copper [3].
|
||||||
|
Maximum erosion rate is approximately proportional to the 1.5 power of p-p amplitude [4].
|
||||||
|
The propagation of ultrasonic waves may result in thermal energy absorption or into chemical energy, resulting in reduced power. For the purposes of converting data from studies that do not use an amplitude of 50um, a exponent factor of 1.5 has been applied.
|
||||||
\end{document}
|
\end{document}
|
||||||
|
|
||||||
|
57
stellite.org
Normal file
57
stellite.org
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Overall Structure: A Progressive Unveiling of Stellite Alloys
|
||||||
|
|
||||||
|
The introduction follows a logical progression:
|
||||||
|
- [ ] What they are and where they came from.
|
||||||
|
+ [ ] Identification as Cobalt-base (Stellite) superalloys.
|
||||||
|
+ [ ] Core beneficial properties
|
||||||
|
high strength, corrosion resistance, high-temperature hardness
|
||||||
|
+ [ ] Pioneering figure (Elwood Haynes) and seminal alloy
|
||||||
|
Stellite 6 with nominal composition
|
||||||
|
+ [ ] Brief mention of other significant early alloys and their initial scope of applications.
|
||||||
|
- [ ] Fundamental Strengthening Mechanisms
|
||||||
|
+ [ ] Primary mechanism: Hard carbide precipitation (e.g., M$_{7}$C$_{3}$, M$_{23}$C$_{6}$), with dependence on carbon content and processing.
|
||||||
|
+ [ ] Secondary mechanism: Solid solution strengthening by specific elements (W, Mo, Cr), also linked to carbon content.
|
||||||
|
+ [ ] Additional mechanism: Stress-induced phase transformation (fcc to hcp) contributing to wear resistance via work hardening.
|
||||||
|
- [ ] How they are made and modified.
|
||||||
|
- [ ] Current research directions and future outlook.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Cobalt-base (Stellite) superalloys are valued for their high strength, corrosion resistance, and hardness, especially at high temperatures.
|
||||||
|
|
||||||
|
Originating in the early 1900s with Elwood Haynes's Stellite 6 (nominally Co–28Cr–4W–1.1C wt.%), these materials, alongside other early alloys like Vitallium and X-40, quickly found use in demanding applications, from industrial tools to aerospace components.
|
||||||
|
|
||||||
|
Stellite alloys derive their properties from hard carbides (e.g., M$_{7}$C$_{3}$, M$_{23}$C$_{6}$), whose formation depends on carbon content and processing, and from solid solution strengthening by elements like W, Mo, and Cr, whose effect is also carbon-dependent. A stress-induced face-centered cubic (fcc) to hexagonal close-packed (hcp) phase transformation further enhances wear resistance through work hardening.
|
||||||
|
|
||||||
|
Applications for Stellite alloys have expanded from traditional uses like machine tools and nuclear components to diverse sectors including oil and gas, chemical processing, and medical implants. This wider usage increases the demand for understanding their corrosion and tribo-corrosion performance in aggressive environments.
|
||||||
|
|
||||||
|
Manufacturing processes critically influence Stellite's microstructure (which can be hypoeutectic or hypereutectic) and, consequently, its performance. Beyond traditional casting, modern powder metallurgy techniques like Hot Isostatic Pressing (HIPing) are favored for producing dense, homogenous, near-net shape parts, minimizing internal defects and subsequent machining. Surface engineering methods, including plasma transferred arc (PTA) welding and laser surface melting, further tailor surfaces for specific wear resistance needs, though considerations like substrate dilution effects on corrosion properties are important.
|
||||||
|
|
||||||
|
Current research focuses on enhancing Stellite alloys through strategic alloying additions (e.g., Si, W, Mo) to tailor microstructure, mechanical properties, and corrosion behavior, partly by methods such as stabilizing the fcc phase. The integrity, protective qualities, and repassivation capability of their passive films are vital for resisting localized corrosion. Understanding the complex interplay between alloy composition, processing, microstructure, and performance in corrosive and wear-intensive conditions remains crucial for optimizing these alloys for existing and emerging industrial applications.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Cobalt-base (Stellite) alloys have seen extensive use in wear environments mainly due to their high strength, corrosion resistance and hardness Co-base superalloys rely primarily on carbides formed in the Co matrix and at grain boundaries for their strength and the distribution, size and shape of carbides depends on processing condition. Solid solution strengthening of Co-base alloy is normally provided by tantalum, tungsten, molybdenum, chromium and columbium [1]. Since these elements are all carbide formers their effectiveness in terms of solid solution strengthening is dependent on the C content of alloy. Stellite 6 with nominal composition Co–28Cr–4W–1.1C (wt.%) was the first Stellite alloy developed in 1900 by Elwood Haynes. In recent years, there have been investigations into the effect of additions of alloying elements [2] on the microstructure and mechanical properties of Stellite 6. Improved hardness through formation of intermetallic compounds and mixed carbides could be achieved in both cases. It was shown that W and Mo addition influences the corrosion behaviour by stabilising the fcc phase [1]. Recent work by Kuzucu et al. [3] has demonstrated how the addition of 6 wt.% Si can alter the microstructure and hardness of Stellite 6 alloy thus enabling the properties to be tailored towards a specific application.
|
||||||
|
|
||||||
|
|
||||||
|
Because Stellite alloys are often used to combat wear there have been numerous studies in which surface engineering strategies to functionalise the surface for a specific application have been assessed. These have included plasma transferred arc (PTA) welding [4], laser surface melting [5] and plasma diffusion treatments [6]. Currently use of Stellite alloys has extended into various industrial sectors (e.g. pulp and paper processing, oil and gas processing, pharmaceuticals, chemical processing) and the need for improving information regarding corrosion (and often tribo-corrosion) of Stellite alloys has increased. It has been recognised that processing changes, which affect the microstructure of Stellite alloy, will most probably affect the corrosion performance [7]. Mohamed et al. [7] in 1999 used dc electrochemical techniques to investigate the corrosion behaviour of crevice-containing and crevice-free Cast and Hot Isostatically Pressed (HIPed) Stellite 6 in 3% NaCl at ambient temperature. They concluded that Hot Isostatic Pressing (HIPing) could potentially improve the localised crevice and pitting corrosion resistance and related their findings to the crevice corrosion models developed by Oldfield and Sutton [8]. In a study by Kim and Kim [9], the corrosion resistance of PTA-welded surfaces was compared to spray-fused and open arc-welded surfaces. It was concluded that dilution effects, which change the composition due to mixing of the coating and the underlying substrate, are key issues in the corrosion resistance of welded layers and the PTA process in this respect was superior to the other two processes.
|
||||||
|
|
||||||
|
|
||||||
|
The compositional roots of contemporary cobalt-base superalloys stem from the early 1900s when patents covering the cobalt–chromium and cobalt–chromium–tungsten system were issued. Consequently, the Stellite alloys of E. Haynes became important industrial materials for cutlery, machine tools and wear-resistant hardfacing applications [1,2]. The cobalt–chromium–molybdenum casting alloy Vitallium was developed in the 1930s for dental prosthetics, and derivative HS-21 soon became an important material for turbocharger and gas turbine applications during the 1940s. Similarly, wrought cobalt–nickel–chromium alloy S816 was used extensively for both gas turbine blades and vanes during this period. Another key alloy, invented in about 1943 by R.H. ∗ Corresponding author. Present address: School of Mechanical Engineering, University of Leeds, Leeds LS2 9JT, UK. Tel.: +44 113 343 6812; fax: +44 113 242 4611. E-mail address: a.neville@leeds.ac.uk (A. Neville). 1 Present address: School of Mechanical Engineering, University of Leeds, Leeds LS2 9JT, UK. Thielemann, was cast cobalt–nickel–chromium–tungsten alloy X-40. This alloy is still used in gas turbine vanes and subsea drill bits, and it has served extensively as a model for newer generations of cobalt-base superalloys. Hot isostatic pressing (HIPing) is rapidly becoming an industry standard as a processing method. Due to increasingly complex engineering shape specifications, higher demands on quality and lowering costs, HIPing has matured to a stage where it is recognized universally and is used on an industrial scale. HIPing requires a high-pressure vessel and consists of applying high isostatic pressure, using an inert gas, to the surface of the piece being processed or on the surface of a can filled with powder. A resistance heater inside the pressure vessel provides the necessary heat for the treatment. The microstructures of Stellite alloys vary considerably with composition, manufacturing process and post treatment. They may either be in the form of hypoeutectic structure consisting of a Co-rich solid solution surrounded by eutectic carbides, or of the hypereutectic type containing large idiomorphic primary chromium-rich carbides and a eutectic [1]
|
||||||
|
|
||||||
|
It is generally acknowledged that the susceptibility of passive metals to localised corrosion (including pitting) and the rate at which this corrosion process occurs are closely related to the ability of the passive film to resist breakdown and to repassivate once corrosion has initiated [2]. The chemical composition of the passive film, its structure, physical properties, coherence and thickness are of paramount importance in the nucleation and propagation of localised corrosion. Investigations into the composition and structure of passive oxide films on stainless steels and other related passive alloys are much more difficult than in the case of iron because the films are thinner, their chemical composition is complicated, and they cannot be reduced cathodically. A major part of the information available on composition and structure of passive films on stainless steels has been obtained with spectroscopic techniques, particularly X-ray photoelectron spectroscopy (XPS) and auger electron spectroscopy (AES). Other methods such as ion scattering spectroscopy (ISS) and secondary ion mass spectrometry (SIMS) also provide valuable data [3].
|
||||||
|
|
||||||
|
In the chemical, petrochemical and pump industries, machine parts often work in conditions where erosion and corrosion processes, acting together, are the main failure mechanisms. The deleterious synergistic effect of the erosion removes either corrosion product or the passive layer that is protecting the underlying surface. When a passive layer is removed, the time taken for it to repassivate is an important consideration in the assessment of wear rates. The rate of repassivation determines the amount of charge that can transfer when the surface is activated by an erosion event (e.g. impact of sand). The rate of repassivation in relation to the frequency of impact is an important consideration in erosion–corrosion. On stainless steels [1] it was shown that higher amounts of key elements (chromium, molybdenum) can lead a faster repassivation during erosion impacts. ∗ Corresponding author. Tel.: +44 113 343 6812; fax: +44 113 242 4611. E-mail address: a.neville@leeds.ac.uk (A. Neville). Cobalt-based alloys have enjoyed extensive use in wearrelated engineering applications for well over 50 years because of their inherent high-strength, corrosion resistance and ability to retain hardness at elevated temperatures [2]. In recent years a concentrated effort has been made to understand the deformation characteristics of cobalt-based alloys exposed to erosion–corrosion environments in order to optimize those factors contributing to their erosion resistance [3–5]. Alloying cobalt with chromium and various quantities of carbon, tungsten and molybdenum produces a family of alloys which can have excellent resistance to corrosion and/or erosion. Understanding how microstructural changes, as a result of alloying, affect corrosion and erosion resistance is critical to optimising the alloy for a particular purpose. In cobalt-based alloys, the key element chromium is added in the range of 20–30 wt.% to improve corrosion and impart some measure of solid-solution strengthening. Where carbide precipitation strengthening is a desirable feature, chromium also plays a strong role through the formation of a series of varying chromium–carbon ratio carbides such as M7C3 and M23C6. Alloying elements like tungsten, molybdenum and 0043-1648/$ – see front matter © 2005 Elsevier B.V. All rights reserved. doi:10.1016/j.wear.2005.02.038 tantalum are added to cobalt for solid solution strengthening. If these metals are added in excess of their solubility, formation of carbides like MC and M6C is likely to occur. Shin et al. [6] investigated the effect of molybdenum on the microstructure and wear resistance properties of Stellite 6 hardfacing alloy. They showed that with an increase in molybdenum content, the M23C6 and M6C type carbides were formed instead of chromium-rich M7C3. They concluded that this microstructural change was responsible for the improvement of the mechanical properties such as hardness and wear resistance of molybdenum-modified Stellite 6 hardfacing alloy. Most cobalt-based alloys possess outstanding cavitation resistance compared to stainless steels which has been shown to be independent of the carbon content (hence hardness), and has been attributed by Crook [7] to crystallographic transformation, under stress, from the face centred cubic (fcc) to hexagonal close packed (hcp) structure by twinning. Heathcock and Ball [8] studied the cavitation resistance of a number of Stellite alloys, cemented carbides and surface-treated alloy steels and showed that in Stellite alloys the cobalt-rich solid solution, incorporating elements such as chromium, tungsten and molybdenum is highly resistant to erosion due to a rapid increase in the work-hardening rate and the strain to fracture which are caused by deformation twinning. Lee et al. [9] compared the liquid impact erosion resistance of 12 Cr steel with a Vickers hardness of 380 kg/mm2 (∼39 MPa) and Stellite 6B with a hardness value of 420 kg/mm2 (∼43 MPa). The liquid impact erosion resistance of Stellite 6B was at least six times greater than that of 12 Cr steel, implying that hardness is not the governing factor for liquid erosion. Stellite 6B also showed very different behaviour in liquid impact erosion in comparison with 12 Cr steel. They concluded that the superior erosion resistance of Stellite 6B results from the cobalt matrix whose deformation appeared mostly as mechanical twins and the material removal was more dominant in the hard carbide precipitates than in the ductile cobalt matrix. Wong-Kian [10] showed that Stellite coatings were advantageous for use in erosion–corrosion environments and can even function at relatively high temperatures. They reported that this is because wear resistance is promoted by the harder complex carbides of chromium and tungsten, while corrosion resistance is enhanced by the presence of cobalt in the matrix.
|
||||||
|
|
||||||
|
Cobalt-base alloys are now progressively used in many industrial and other applications. This is basically due to their high-temperature mechanical strength and their corrosion resistance in many environments. Some categories of these alloys may be used as high-temperature structural materials, wear resistant materials in aggressive media or for orthopedic implants. The main alloying elements are usually Cr, MO, W and Ni. Additionally, wear resistant alloys normally contain relatively high levels of carbon (0.25 to 2.5 wt.%) needed for carbide formation, while alloys used for structural applications are normally low in carbon. Alloy Stellite-6 is a Co—Cr—W—C alloy which exhibits an outstanding oxidation and corrosion resistance, hightemperature strength as well as resistance to thermal fatigue. The wrought alloy is used in nuclear and other industrial engineering purposes [1 to 4]. In nuclear industry, Stellite-6 is one of the most popular alloys used in manufacturing control and safety valve components in pressurized water reactors (PWR). It has also been used for control shaft guide bushings in sodium cooled reactors (LMFBR). In chemical industry, the alloy is used in the form of weld overlay for catalytic reactor valves for various liquids to resist the effect of corrosive wear and for surfacing of combustion engine valves and steam turbine valves. Powder metallurgy (PIM) is a fabrication technology capable of producing reasonably complex designs at relatively high rates of production. Using P/M technology, segregation problems (normally associated with conventional casting techniques) are minimized, especially for small parts. The metallurgical characteristics of the end product are primarily developed during the sintering cycle [5, 6]. Powder metallurgy techniques have been applied for the production of cobalt-base alloys. Two basic P/M techniques, namely hot isostatic pressing (HIP) and wet powder pouring (WPP) have been used for production of alloy Stellite-6. Details of these processes are described elsewhere [7, 8].
|
||||||
|
|
||||||
|
Cobalt-base (Stellite) alloys have seen extensive use in wear environments mainly due to their high strength, corrosion resistance and hardness. Co-base superalloys rely primarily on carbides, formed in the Co matrix and at grain boundaries, for their strength and wear resistance. The distribution, size and shape of carbides depend on processing conditions. Solid solution strengthening of Co-base alloys is normally provided by tantalum, tungsten, molybdenum, chromium and niobium [1]. Since these elements are all carbide formers, their effectiveness in terms of solid solution strengthening is dependent on the C content of the alloy. Stellite 6 with nominal composition Co–28Cr–4.5W–1.2C (wt%) was the first Stellite alloy developed in the early 1900s by Elwood Haynes. In recent years there have been investigations into the effect of alloying elements additions on the microstructure and mechanical properties of Stellite 6 [2]. Improved hardness through formation of intermetallic compounds and mixed carbides was achieved in both cases. It has been shown that adding W and Mo influences corrosion behaviour by stabilizing the face-centred cubic (fcc) phase [1]. ∗ Corresponding author. Tel.: +39 011 0904641; fax: +39 0110904699. E-mail address: francesco.rosalbino@polito.it (F. Rosalbino). Because Stellite alloys are often used to combat wear, there have been numerous studies into surface engineering strategies to functionalize the surface for a specific application. These have included plasma transferred arc (PTA) welding [3], laser surface melting [4] and plasma diffusion treatments [5] all involving Stellite alloys. Application of Co-base superalloys was traditionally most prevalent in the nuclear industry in the 1960s and 1970s and, for this reason, much research into corrosion of Stellite focused on conditions relating to nuclear power applications such as simulated PWR primary heat transfer conditions [6,7]. Currently, use of Stellite alloys has extended into various industrial sectors (e.g. pulp and paper processing, oil and gas processing, pharmaceuticals, chemical processing) and the need for improved information regarding corrosion (and often tribo-corrosion) of Stellite has increased. It has been recognized that processing changes, which affect the microstructure of Stellite alloys, most affect corrosion performance [8]. Hot isostatic pressing (HIPing) is a thermo-mechanical process [9] in which components or a contained powder is subjected to simultaneous applications of heat and high pressure in an inert medium. HIPing removes internal void cavities thus consolidating the structure making it homogenous, segregation free, dense, nearnet shape and requiring little or no machining.
|
Loading…
x
Reference in New Issue
Block a user