Difference between revisions of "Team:Queens Canada/Luminometer Software"

Line 15: Line 15:
 
<body>
 
<body>
  
<h2>Luminometer Software</h2>
+
<h2 style="width:1200px;margin-left:12%">Luminometer Software</h2>
<h3>Electrical Design</h3>
+
<h3 style="width:1200px;margin-left:12%">Electrical Design</h3>
<p>The light to frequency sensor used as a luminometer was attached to a digital input on the microcontroller. When  
+
<p style="width:1200px;margin-left:12%">The light to frequency sensor used as a luminometer was attached to a digital input on the microcontroller. When  
 
the sensor detects a photon, it sends a pulse of high voltage to the digital input which is then detected by the  
 
the sensor detects a photon, it sends a pulse of high voltage to the digital input which is then detected by the  
 
controller. To properly count each photon, an interrupt was attached to this digital input in the software, such that  
 
controller. To properly count each photon, an interrupt was attached to this digital input in the software, such that  
Line 25: Line 25:
 
measured and compared.</p>
 
measured and compared.</p>
  
<h3>Breathing Rate</h3>
+
<h3 style="width:1200px;margin-left:12%">Breathing Rate</h3>
<p>To measure breathing rate, multiple readings are taken of the NTC thermistor’s resistivity over a set period of  
+
<p style="width:1200px;margin-left:12%">To measure breathing rate, multiple readings are taken of the NTC thermistor’s resistivity over a set period of  
 
time. As the child breathes out, warmer air comes in contact with the thermistor, which is then followed by colder  
 
time. As the child breathes out, warmer air comes in contact with the thermistor, which is then followed by colder  
 
air as the child breathes in. These changes in temperature are reflected in the changes in resistivity of the  
 
air as the child breathes in. These changes in temperature are reflected in the changes in resistivity of the  
 
thermistor, the maximums and minimums of these changes over time can be counted to calculate a rate.</p>
 
thermistor, the maximums and minimums of these changes over time can be counted to calculate a rate.</p>
<p>The code written to calculate this rate first takes a reading of the thermistor’s resistivity once every second  
+
<p style="width:1200px;margin-left:12%">The code written to calculate this rate first takes a reading of the thermistor’s resistivity once every second  
 
for 100 seconds and stores the values in an array. This data can be plotted against time to create a sinusoidal wave  
 
for 100 seconds and stores the values in an array. This data can be plotted against time to create a sinusoidal wave  
 
as shown below. However, to count the peaks corresponding to each individual breath, the data must be preprocessed to  
 
as shown below. However, to count the peaks corresponding to each individual breath, the data must be preprocessed to  
 
remove outlying maximums and minimums.</p>
 
remove outlying maximums and minimums.</p>
 
<img src="https://static.igem.org/mediawiki/2018/f/f5/T--Queens_Canada--RawThermistorData.png" alt='Raw Thermistor Data'/>
 
<img src="https://static.igem.org/mediawiki/2018/f/f5/T--Queens_Canada--RawThermistorData.png" alt='Raw Thermistor Data'/>
<p>This is done using an exponential filter, which is a type of low pass filter used to remove high frequency noise.  
+
<p style="width:1200px;margin-left:12%">This is done using an exponential filter, which is a type of low pass filter used to remove high frequency noise.  
 
It is also an autoregression filter, which means that it relies on past output and input, so that over time it relies  
 
It is also an autoregression filter, which means that it relies on past output and input, so that over time it relies  
 
more heavily on past values and is able to detect patterns such as a steady breathing rate. The filtered data can be  
 
more heavily on past values and is able to detect patterns such as a steady breathing rate. The filtered data can be  
 
plotted to produce the sinusoidal wave shown below.</p>
 
plotted to produce the sinusoidal wave shown below.</p>
<img src="https://static.igem.org/mediawiki/2018/7/7f/T--Queens_Canada--FilteredThermistorData.png" alt='Filtered Thermistor Data'/>
+
<img style="width:1200px;margin-left:12%" src="https://static.igem.org/mediawiki/2018/7/7f/T--Queens_Canada--FilteredThermistorData.png" alt='Filtered Thermistor Data'/>
<p>The cleaned data can then be analyzed to detect peaks. This is done by comparing each value to the previous value  
+
<p style="width:1200px;margin-left:12%">The cleaned data can then be analyzed to detect peaks. This is done by comparing each value to the previous value  
 
and the value following it. If the current value is larger than both, it must be a maximum and the number of peaks is  
 
and the value following it. If the current value is larger than both, it must be a maximum and the number of peaks is  
 
increased. The total number of peaks, corresponding to the total number of breathes, is then divided by 100 seconds  
 
increased. The total number of peaks, corresponding to the total number of breathes, is then divided by 100 seconds  
 
to determine a rate of breathes per second.</p>
 
to determine a rate of breathes per second.</p>
 
+
<footer style="background-color: #212121;height:90px ">
 +
            <div class="container">
 +
                <div class="row">
 +
                    <div class="col-md-4">
 +
                        <ul class="list-inline quicklinks">
 +
                            <li><a href="https://igem.org/Main_Page" style="color:white; font-size:16pt">iGEM Headquarters</a>
 +
                            </li>
 +
                        </ul>
 +
                    </div>
 +
                    <div class="col-md-4">
 +
                        <ul class="list-inline social-buttons" style="margin-left:20%">
 +
                            <li><a href="https://twitter.com/iGEMQueens"style="    display: block;
 +
    background-color: #fff;
 +
    height: 40px;
 +
    width: 40px;
 +
    border-radius: 100%;
 +
    font-size: 20px;
 +
    line-height: 40px;
 +
    color: #000;
 +
    outline: 0;
 +
    -webkit-transition: all .3s;
 +
    -moz-transition: all .3s;
 +
    transition: all .3;"><i class="fa fa-twitter"style="color:black; font-family:FontAwesome;margin-left:10.75px;"></i></a>
 +
                            </li>
 +
                            <li><a href="https://www.facebook.com/iGEMQueens/?fref=ts"style="    display: block;
 +
    background-color: #fff;
 +
    height: 40px;
 +
    width: 40px;
 +
    border-radius: 100%;
 +
    font-size: 20px;
 +
    line-height: 40px;
 +
    color: #000;
 +
    outline: 0;
 +
    -webkit-transition: all .3s;
 +
    -moz-transition: all .3s;
 +
    transition: all .3;"><i class="fa fa-facebook"style="color:black;font-family:FontAwesome;margin-left:10.75px;"></i></a>
 +
                            </li>
 +
                            <li><a href="mailto:director@qgemteam.com" style="    display: block;
 +
    background-color: #fff;
 +
    height: 40px;
 +
    width: 40px;
 +
    border-radius: 100%;
 +
    font-size: 20px;
 +
    line-height: 40px;
 +
    color: #000;
 +
    outline: 0;
 +
    -webkit-transition: all .3s;
 +
    -moz-transition: all .3s;
 +
    transition: all .3;"><i class="fa fa-envelope"style="color:black;font-family:FontAwesome;margin-left:10.75px;"></i></a>
 +
                            </li>
 +
                            <li><a href="https://www.linkedin.com/company/1633448?trk=tyah&amp;trkInfo=clickedVertical%3Acompany%2CclickedEntityId%3A1633448%2Cidx%3A1-1-1%2CtarId%3A1464110668532%2Ctas%3Aqgem" style="    display: block;
 +
    background-color: #fff;
 +
    height: 40px;
 +
    width: 40px;
 +
    border-radius: 100%;
 +
    font-size: 20px;
 +
    line-height: 40px;
 +
    color: #000;
 +
    outline: 0;
 +
    -webkit-transition: all .3s;
 +
    -moz-transition: all .3s;
 +
    transition: all .3;"><i class="fa fa-linkedin"style="color:black; font-family:FontAwesome;margin-left:10.75px;"></i></a>
 +
                            </li>
 +
                        </ul>
 +
                    </div>
 +
                    <div class="col-md-4">
 +
                        <ul class="list-inline quicklinks" style="color: white;font-size:16pt;">
 +
                            <li><a href="http://www.queensu.ca/" style="color:white;margin-left:100px;">Queen's University</a>
 +
                            </li>
 +
                        </ul>
 +
                    </div>
 +
                </div>
 +
            </div>
 +
        </footer>
 
</body>
 
</body>
 
</html>
 
</html>

Revision as of 19:50, 18 September 2018

Luminometer Software

Electrical Design

The light to frequency sensor used as a luminometer was attached to a digital input on the microcontroller. When the sensor detects a photon, it sends a pulse of high voltage to the digital input which is then detected by the controller. To properly count each photon, an interrupt was attached to this digital input in the software, such that any time the controller received a pulse of high voltage, the rest of the program was interrupted, and the photon count was increased. By allowing the program to run for a set amount of time, a rate can be calculated for the number of photons per second. By increasing the length of this sampling period, lower levels of light can be more accurately measured and compared.

Breathing Rate

To measure breathing rate, multiple readings are taken of the NTC thermistor’s resistivity over a set period of time. As the child breathes out, warmer air comes in contact with the thermistor, which is then followed by colder air as the child breathes in. These changes in temperature are reflected in the changes in resistivity of the thermistor, the maximums and minimums of these changes over time can be counted to calculate a rate.

The code written to calculate this rate first takes a reading of the thermistor’s resistivity once every second for 100 seconds and stores the values in an array. This data can be plotted against time to create a sinusoidal wave as shown below. However, to count the peaks corresponding to each individual breath, the data must be preprocessed to remove outlying maximums and minimums.

Raw Thermistor Data

This is done using an exponential filter, which is a type of low pass filter used to remove high frequency noise. It is also an autoregression filter, which means that it relies on past output and input, so that over time it relies more heavily on past values and is able to detect patterns such as a steady breathing rate. The filtered data can be plotted to produce the sinusoidal wave shown below.

Filtered Thermistor Data

The cleaned data can then be analyzed to detect peaks. This is done by comparing each value to the previous value and the value following it. If the current value is larger than both, it must be a maximum and the number of peaks is increased. The total number of peaks, corresponding to the total number of breathes, is then divided by 100 seconds to determine a rate of breathes per second.