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.
Merge pull request #19 from aris-space/cold-flow
Add cold flow procedure
- Loading branch information
Showing
15 changed files
with
274 additions
and
54 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
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,158 @@ | ||
\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 | ||
& | ||
\begin{minipage}[t]{1.2\linewidth} | ||
#1 | ||
\vspace{1mm} % Just slightly add vspace to prevent clipping into table border | ||
\end{minipage} | ||
& | ||
\begin{minipage}[t]{0.8\linewidth} | ||
#2 | ||
\vspace{1mm} % Just slightly add vspace to prevent clipping into table border | ||
\end{minipage} | ||
\\ \hline | ||
} | ||
|
||
% Command for row in attendee list | ||
\newcommand{\attendeeItem}[3]{ | ||
\cellcolor{#3} #1 & #2 & | ||
\underline{\hspace{4cm}} | ||
& \underline{\hspace{4cm}} \\ \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 | ||
} | ||
|
||
% Command for row in documents list | ||
\newcommand{\documentItem}[3]{ | ||
\checkbox | ||
& | ||
#1 | ||
& | ||
\begin{minipage}[t]{\linewidth} | ||
\textit{\uline{#2}} | ||
\vspace{1mm} % Just slightly add vspace to prevent clipping into table border | ||
\end{minipage} | ||
& | ||
\begin{minipage}[t]{\linewidth} | ||
#3 | ||
\vspace{1mm} % Just slightly add vspace to prevent clipping into table border | ||
\end{minipage} | ||
\\ \hline | ||
} | ||
|
||
|
||
\title{Cold Flow Procedure} | ||
\author{Operating 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{Operation Description} | ||
\input{sections/operation-description.tex} | ||
|
||
\section{Role Assignment} | ||
\input{../firing-conduction/sections/role-assignment.tex} | ||
|
||
\section{Test Parameters} | ||
\input{sections/test-parameters.tex} | ||
|
||
\section{Required Documents} | ||
\input{../firing-conduction/sections/required-documents.tex} | ||
|
||
\section{Environmental Conditions} | ||
\input{../firing-conduction/sections/environmental-conditions.tex} | ||
|
||
\newpage | ||
|
||
\newtoggle{firing} | ||
\togglefalse{firing} | ||
|
||
%%%%%% 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{Pre-Preparation} | ||
\input{../firing-conduction/sections/pre_preparation.tex} | ||
|
||
\section{Briefing} | ||
\input{../firing-conduction/sections/briefing.tex} | ||
|
||
\section{Preparation \& Assembly} | ||
\input{../firing-conduction/sections/preparation_assembly.tex} | ||
|
||
\section{Transfer to Airfield and Installation} | ||
\input{../firing-conduction/sections/transfer_installation.tex} | ||
|
||
\section{Preconditions Checks \& Pre Firing Checks} | ||
\input{../firing-conduction/sections/preconditions_pre_firing.tex} | ||
|
||
\section{Ignition Test \& Filling} | ||
\input{../firing-conduction/sections/ign_test_filling.tex} | ||
|
||
\section{Firing} | ||
\input{../firing-conduction/sections/firing.tex} | ||
|
||
\section{Safe State Establishment} | ||
\input{../firing-conduction/sections/safe_state_establishment.tex} | ||
|
||
\section{Post-Firing Checks \& Deinstallation} | ||
\input{../firing-conduction/sections/post_firing_deinstallation.tex} | ||
|
||
\section{Return to IPZ} | ||
\input{../firing-conduction/sections/return_ipz.tex} | ||
|
||
\section{Disassembly \& Inspection} | ||
\input{../firing-conduction/sections/disassembly_inspection.tex} | ||
|
||
\section{Debriefing} | ||
\input{../firing-conduction/sections/debriefing.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,27 @@ | ||
% Notes | ||
|
||
\rowcolors{1}{notesColor}{notesColor} | ||
\begin{tabularx}{\textwidth}{X} | ||
\hline | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{} | ||
\noteItem{.} | ||
|
||
\end{tabularx} |
3 changes: 3 additions & 0 deletions
3
src/general/cold-flow-conduction/sections/operation-description.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,3 @@ | ||
% Operation description | ||
This procedure describes the top level conduction of a cold flow test using the LRE Test Bench on the Dübendorf Airfield. The Test Conductor (TC) is the person responsible for the conduction of the test and should follow and fill out this procedure. | ||
Any information relevant for a specific firing can also be added here. |
25 changes: 25 additions & 0 deletions
25
src/general/cold-flow-conduction/sections/test-parameters.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,25 @@ | ||
\begin{tabularx}{\textwidth}{|>{\columncolor{tableColumnColor}}c|c|X|X|} | ||
\hline | ||
\rowcolor{tableHeaderColor} | ||
ID & Parameter & Specification & Comments \\ \hline | ||
C1 & Firing Time & \begin{minipage}[t]{\linewidth} \underline{\hspace{5cm}} \end{minipage} & \\ \hline | ||
C2 & Throttle & \underline{\hspace{5cm}} & \\ \hline | ||
C3 & Control & \underline{\hspace{5cm}} & \\ \hline | ||
C4 & Oxidizer & \underline{\hspace{5cm}} & \\ \hline | ||
C5 & Fuel & \underline{\hspace{5cm}} & \\ \hline | ||
C6 & IGN Oxidizer & \underline{\hspace{5cm}} & \\ \hline | ||
C7 & IGN Fuel & \underline{\hspace{5cm}} & \\ \hline | ||
\multicolumn{4}{|c|}{\cellcolor{red} Engine} \\ \hline | ||
C8 & Engine Version & \underline{\hspace{5cm}} & \\ \hline | ||
C9 & Injector Version & \underline{\hspace{5cm}} & \\ \hline | ||
\multicolumn{4}{|c|}{\cellcolor{orange} Propellant Supply System} \\ \hline | ||
C10 & Tank Type & \underline{\hspace{5cm}} & \\ \hline | ||
C11 & Feed P OSS & \underline{\hspace{5cm}} & \\ \hline | ||
C12 & Feed P FSS & \underline{\hspace{5cm}} & \\ \hline | ||
\multicolumn{4}{|c|}{\cellcolor{yellow} Data Acquisition and Control System} \\ \hline | ||
C12 & Config File hash & \underline{\hspace{5cm}} & \\ \hline | ||
\multicolumn{4}{|c|}{\cellcolor{black} \textcolor{white}{Filling}} \\ \hline | ||
C13 & Ethanol & \underline{\hspace{5cm}} & \\ \hline | ||
C14 & LOX & \underline{\hspace{5cm}} & \\ \hline | ||
C15 & Water & \underline{\hspace{5cm}} & \\ \hline | ||
\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
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
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
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
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
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
Oops, something went wrong.