The Propulsion Development Platform (PDP) Monitoring System is a web-based application that allows users to monitor the status of the engine controls and instrumentation. The PDP is a testbed for the development of propulsion systems, and the monitoring system is used to control valve actuation, monitor sensor readings, and record data.
Right now, Aidan's thermocouple code is just dumped into read_labjack.py. I think it would make more sense to make a thermocouple.py that contains the function get_ref_voltage() and V_to_K(). Then we import this into read_labjack.py and use as needed.
Acceptance Criteria
[x] Create new file called thermocouple.py that contains the V_to_K() function currently in read_labjack.py.
[x] Remove current thermocouple code from read_labjack.py and import the functions in thermocouple.py to replace them.
[x] Add some comments in thermocouple.py that describe where the function parameters came from, units etc.
Description
Right now, Aidan's thermocouple code is just dumped into
read_labjack.py
. I think it would make more sense to make athermocouple.py
that contains the functionget_ref_voltage()
andV_to_K()
. Then we import this intoread_labjack.py
and use as needed.Acceptance Criteria
thermocouple.py
that contains theV_to_K()
function currently inread_labjack.py
.read_labjack.py
and import the functions inthermocouple.py
to replace them.thermocouple.py
that describe where the function parameters came from, units etc.Dev Notes
QA Notes
Linked issues