Difference between revisions of "Team:USP-EEL-Brazil/Experiments"

Line 1: Line 1:
 
{{USP-EEL-Brazil}}
 
{{USP-EEL-Brazil}}
 +
 
<html>
 
<html>
  
 +
<!DOCTYPE html>
 +
<html>
 +
<head>
 +
<meta name="viewport" content="width=device-width, initial-scale=1">
 +
<style>
 +
 +
.collapsible {
 +
 +
    color: black;
 +
    cursor: pointer;
 +
    padding: 18px;
 +
    width: 100%;
 +
 +
 +
    text-align: left;
 +
    outline: none;
 +
    font-size: 30px;
 +
    margin:0 10% 0 10%;
 +
}
 +
 +
.content {
 +
    padding: 0 18px;
 +
    display: none;
 +
    overflow: hidden;
 +
    border: 3px solid #5e87ff;
 +
 +
}
 +
 +
 +
 +
/* Style tab links */
 +
.tablink {
 +
    border: 3px solid #5e87ff;
 +
    color: black;
 +
    float: left;
 +
background-color: white;
 +
    outline: none;
 +
    cursor: pointer;
 +
    padding: 14px 16px;
 +
    font-size: 17px;
 +
    width: 25%;
 +
}
 +
 +
.tablink:hover {
 +
    border: 3px solid #5e87ff;
 +
    background-color: lightblue;
 +
}
 +
 +
/* Style the tab content (and add height:100% for full page content) */
 +
.tabcontent {
 +
    color: black;
 +
    display: none;
 +
    padding: 100px 20px;
 +
    height: 100%;
 +
}
 +
 +
#Reactors {background-color: ;}
 +
#DMT{background-color: ;}
 +
#OPT {background-color: ;}
 +
#SD {background-color: ;}
 +
                                                            </style>
 +
                                                            </head>
 +
                                                            <body>
 
</div>
 
</div>
 
  <img style="text-align:center;"src="https://static.igem.org/mediawiki/2018/0/08/T--USP-EEL-Brazil--eembbrazil.jpg"width=100% >
 
  <img style="text-align:center;"src="https://static.igem.org/mediawiki/2018/0/08/T--USP-EEL-Brazil--eembbrazil.jpg"width=100% >
Line 8: Line 72:
 
<div class="column full_size">
 
<div class="column full_size">
  
<h1>Experiments</h1>
+
<button class="tablink" onclick="openPage('Reactors', this, 'color')" id="">Reactors</button>
<p>Describe the research, experiments, and protocols you used in your iGEM project. These should be detailed enough for another team to repeat your experiments.</p>
+
<button class="tablink" onclick="openPage('DMT', this, '')" >Different Mediators Test</button>
 +
<button class="tablink" onclick="openPage('OPT', this, '')">Optimun pH and Temperature</button>
 +
<button class="tablink" onclick="openPage('SD', this, '')">Substrate Degradation</button>
  
<p>
+
<div id="Reactors" class="tabcontent">
Please remember to put all characterization and measurement data for your parts on the corresponding Registry part pages.  
+
  <h3 style="margin-left:10%;">Reactors</h3>
</p>
+
  <p>To understand how our system would react to diferents inputs first we need to estabelecer um tipo de reactor.</p>
 +
<h3>BATCH REACTORS </h3>
  
</div>
+
<p>For batch reactors we used the mass balance as the described by equation (5), when the data were based on removal ratio. Whenever the data was given in substrate concentration, the ordinary Michaelis-Menten was used, as above on equation (6)</p>
 +
<img src="https://static.igem.org/mediawiki/2018/9/97/T--USP-EEL-Brazil--Equa%C3%A7%C3%A3o6.jpeg">
 +
<p>And the boundary condition considered was that at t=0, the removal was 0 too. </p>
 +
<p>Using the software Wolfram Mathemathica, a non linear model was created to fit the data and find the km and the vmax¬¬. </p>
  
  
 +
<h3>FED-BATCH REACTORS </h3>
 +
<h3>ENZYMATIC MEMBRANE REACTOR </h3>
  
<div class="column two_thirds_size">
+
</div>
<h3>What should this page contain?</h3>
+
<ul>
+
<li> Protocols </li>
+
<li> Experiments </li>
+
<li> Documentation of the development of your project </li>
+
</ul>
+
  
 +
<div id="DMT" class="tabcontent">
 +
  <h3>Different Mediators Test</h3>
 +
  <p>Some news this fine day!</p>
 +
 
 
</div>
 
</div>
  
<div class="column third_size">
+
<div id="OPT" class="tabcontent">
<div class="highlight decoration_A_full">
+
  <h3>Optimun pH and Temperature</h3>
<h3>Inspiration</h3>
+
  <p>Get in touch, or swing by for a cup of coffee.</p>
<ul>
+
 
<li><a href="https://2014.igem.org/Team:Colombia/Protocols">2014 Colombia </a></li>
+
<li><a href="https://2014.igem.org/Team:Imperial/Protocols">2014 Imperial </a></li>
+
<li><a href="https://2014.igem.org/Team:Caltech/Project/Experiments">2014 Caltech </a></li>
+
</ul>
+
 
</div>
 
</div>
 +
 +
<div id="SD" class="tabcontent">
 +
  <h3>Substrate Degradation</h3>
 +
  <p>Get in touch, or swing by for a cup of coffee.</p>
 +
 +
 +
 
</div>
 
</div>
  
  
<div class="clear"></div>
 
  
 +
 +
 +
 +
<script>
 +
function openPage(pageName,elmnt,color) {
 +
    var i, tabcontent, tablinks;
 +
    tabcontent = document.getElementsByClassName("tabcontent");
 +
    for (i = 0; i < tabcontent.length; i++) {
 +
        tabcontent[i].style.display = "none";
 +
    }
 +
    tablinks = document.getElementsByClassName("tablink");
 +
    for (i = 0; i < tablinks.length; i++) {
 +
        tablinks[i].style.backgroundColor = "";
 +
    }
 +
    document.getElementById(pageName).style.display = "block";
 +
    elmnt.style.backgroundColor = color;
 +
 +
}
 +
<!--
 +
// Get the element with id="defaultOpen" and click on it
 +
document.getElementById("defaultOpen").click();
 +
-->
 +
</script>
 +
   
 +
</body>
  
  
  
 
</html>
 
</html>
 +
 +
{{USP-EEL-Brazil/footer}}

Revision as of 12:04, 5 October 2018

Reactors

To understand how our system would react to diferents inputs first we need to estabelecer um tipo de reactor.

BATCH REACTORS

For batch reactors we used the mass balance as the described by equation (5), when the data were based on removal ratio. Whenever the data was given in substrate concentration, the ordinary Michaelis-Menten was used, as above on equation (6)

And the boundary condition considered was that at t=0, the removal was 0 too.

Using the software Wolfram Mathemathica, a non linear model was created to fit the data and find the km and the vmax¬¬.

FED-BATCH REACTORS

ENZYMATIC MEMBRANE REACTOR

Different Mediators Test

Some news this fine day!

Optimun pH and Temperature

Get in touch, or swing by for a cup of coffee.

Substrate Degradation

Get in touch, or swing by for a cup of coffee.

Go to top