forked from aris-space/helios-procedures
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
199 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
\documentclass{article} | ||
|
||
\input{../../common/lib/header} | ||
|
||
% Define a counter for the item numbers | ||
\newcounter{rowCounter} | ||
% Initialize counter | ||
\setcounter{rowCounter}{0} | ||
|
||
\newcounter{tableCounter} | ||
\setcounter{tableCounter}{0} | ||
|
||
% Command for row in checklist | ||
% First argument is amount | ||
% Second argument is description | ||
\newcommand{\checklistItem}[2]{ | ||
\checkbox & #1 & #2 \\ \hline | ||
} | ||
|
||
% Command for row in procedure list | ||
\newcommand{\procedureItem}[2]{ | ||
\stepcounter{rowCounter} % Increment counter | ||
\arabic{tableCounter}.\arabic{rowCounter} | ||
& | ||
\checkbox | ||
& | ||
#1 | ||
& | ||
\begin{minipage}[t]{\linewidth} | ||
#2 | ||
\vspace{1mm} % Just slightly add vspace to prevent clipping into table border | ||
\end{minipage} | ||
\\ \hline | ||
} | ||
|
||
% Command for row in note list | ||
\newcommand{\noteItem}[1]{ | ||
\begin{minipage}[t]{\linewidth} | ||
#1 | ||
\vspace{1mm} % Just slightly add vspace to prevent clipping into table border | ||
\end{minipage} | ||
\\ \hline | ||
} | ||
|
||
|
||
\title{Overpressure} | ||
\author{Contingency Procedure} | ||
\date{Version: \isodate\today} | ||
|
||
\begin{document} | ||
|
||
\maketitle | ||
|
||
% Set the page style for the title page | ||
\thispagestyle{fancy} | ||
|
||
%%%%%% Prefix section | ||
% Change section numbering to A, B, C... | ||
\renewcommand{\thesection}{\Alph{section}} | ||
|
||
\section{Alert Level} | ||
\input{../../general/alert-level.tex} | ||
Overpressure is an alert \textbf{LEVEL 4 or 5} event. | ||
|
||
\section{Contingency Team Roles} | ||
\begin{tabularx}{0.9\textwidth}{|c|c|} | ||
\hline | ||
\rowcolor{tableHeaderColor} Role & Responsible \\ \hline | ||
RE & PSS1 \\ \hline | ||
RS & SO \\ \hline | ||
RA & DACS1 \\ \hline | ||
\end{tabularx} | ||
|
||
\section{Impacted Subsystems} | ||
\begin{tabularx}{0.9\textwidth}{|c|c|} | ||
\hline | ||
\rowcolor{tableHeaderColor} Subsystem & Impact \\ \hline | ||
DACS & Abort \\ \hline | ||
ENG & Secure \\ \hline | ||
PSS & Possible damage \\ \hline | ||
\end{tabularx} | ||
|
||
\section{Contingency Plan Activation} | ||
\begin{tabularx}{0.9\textwidth}{|>{\columncolor{tableColumnColor}}c|>{\columncolor{tableColumnColor}}c|c|X|c|} | ||
\hline | ||
\rowcolor{tableHeaderColor} ID & Check & Subteam & Criterion & Value \\ \hline | ||
2. & \checkbox & HEP & ...while system is \textcolor{red}{pressurized} & Go to \textcolor{red}{1} \\ \hline | ||
3. & \checkbox & HEP & ...during \textcolor{red}{firing} & Go to \textcolor{red}{2} \\ \hline | ||
\end{tabularx} | ||
|
||
\newpage | ||
|
||
%%%%%% Main section | ||
% Change section numbering to 1, 2, 3... | ||
\renewcommand{\thesection}{\arabic{section}} | ||
|
||
% Reset section counter to start from 1 again | ||
\setcounter{section}{0} | ||
|
||
\section{Recovery Operations: System is \textcolor{red}{Pressurized}} | ||
\input{sections/pressurized.tex} | ||
|
||
\section{Recovery Operations: During \textcolor{red}{Firing}} | ||
\input{sections/firing.tex} | ||
|
||
\section{Nominal Operation Resumption Check} | ||
\input{sections/resumption-check.tex} | ||
|
||
\newpage | ||
|
||
%%%%%% Notes | ||
\setcounter{section}{0} | ||
\section*{Notes} | ||
\input{sections/notes.tex} | ||
|
||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
% Procedure for installation | ||
|
||
\stepcounter{tableCounter} % Increment counter | ||
\setcounter{rowCounter}{0} % Reset counter | ||
\begin{tabularx}{\textwidth}{|>{\columncolor{tableColumnColor}}c|>{\columncolor{tableColumnColor}}c|c|X|} | ||
\hline | ||
\rowcolor{tableHeaderColor} | ||
ID & Check & Respomsible & Task \\ \hline | ||
|
||
\procedureItem{RA}{Abort firing} | ||
|
||
\procedureItem{RE}{Ensure system is depressurized} | ||
|
||
\procedureItem{RA}{Deactivate the system} | ||
|
||
\procedureItem{RE}{Ensure safe state} | ||
|
||
\procedureItem{RE}{Inform coaches} | ||
|
||
\end{tabularx} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
% Notes | ||
|
||
\rowcolors{1}{notesColor}{notesColor} | ||
\begin{tabularx}{\textwidth}{X} | ||
\hline | ||
|
||
\noteItem{Applies when overpressure triggered a warning in the system } | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
|
||
\end{tabularx} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
% Procedure for installation | ||
|
||
\stepcounter{tableCounter} % Increment counter | ||
\setcounter{rowCounter}{0} % Reset counter | ||
\begin{tabularx}{\textwidth}{|>{\columncolor{tableColumnColor}}c|>{\columncolor{tableColumnColor}}c|c|X|} | ||
\hline | ||
\rowcolor{tableHeaderColor} | ||
ID & Check & Respomsible & Task \\ \hline | ||
|
||
\procedureItem{ALL}{Step away from system} | ||
|
||
\procedureItem{ALL}{Go back to HUT} | ||
|
||
\procedureItem{RE}{Depressurize the system} | ||
|
||
\procedureItem{RA}{Deactivate the system} | ||
|
||
\procedureItem{RS}{Ensure safe state} | ||
|
||
\procedureItem{RE}{Inform coaches} | ||
|
||
\end{tabularx} |
11 changes: 11 additions & 0 deletions
11
src/pss/contingency-overpressure/sections/resumption-check.tex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
\stepcounter{tableCounter} % Increment counter | ||
\setcounter{rowCounter}{0} % Reset counter | ||
\begin{tabularx}{\textwidth}{|>{\columncolor{tableColumnColor}}c|>{\columncolor{tableColumnColor}}c|c|X|} | ||
\hline | ||
\rowcolor{tableHeaderColor} | ||
ID & Check & Respomsible & Task \\ \hline | ||
|
||
\procedureItem{RE}{The cause for the overpressure is identified and fixed} | ||
|
||
\procedureItem{RS}{System is in safe state} | ||
\end{tabularx} |