Difference between revisions of "Team:Dundee/Modeling/Appendix3"

Line 98: Line 98:
 
     <section id="about" class="row1">     
 
     <section id="about" class="row1">     
 
       <div class="row">
 
       <div class="row">
         <div class="col-md-4">
+
         <div class="col-lg-3">
 
           <a href="#chromate2" class="scroll"><span class="glyphicon glyphicon-pushpin" type="button"></span></a> <!--Button that navigates to a specific section of page-->
 
           <a href="#chromate2" class="scroll"><span class="glyphicon glyphicon-pushpin" type="button"></span></a> <!--Button that navigates to a specific section of page-->
 
           <h3>Chromate Model Code</h3>
 
           <h3>Chromate Model Code</h3>
 
           <p class="about-content">MATLAB code for chromate model.</p><!--text displayed under button-->
 
           <p class="about-content">MATLAB code for chromate model.</p><!--text displayed under button-->
 
         </div>
 
         </div>
 
+
         <div class="col-lg-3">
         <div class="col-md-4">
+
 
           <a href="#bone" class="scroll"><span class="glyphicon glyphicon-pushpin" type="button"></span></a><!--Button that navigates to a specific section of page-->
 
           <a href="#bone" class="scroll"><span class="glyphicon glyphicon-pushpin" type="button"></span></a><!--Button that navigates to a specific section of page-->
 
           <h3>Bone Incision Experimental Data</h3>
 
           <h3>Bone Incision Experimental Data</h3>
 
           <p class="about-content">Raw data for the bone incision experiments.</p><!--text displayed under button-->
 
           <p class="about-content">Raw data for the bone incision experiments.</p><!--text displayed under button-->
 
 
 
         </div>
 
         </div>
 
+
         <div class="col-lg-3">
         <div class="col-md-4">
+
 
           <a href="#bone" class="scroll"><span class="glyphicon glyphicon-pushpin" type="button"></span></a><!--Button that navigates to a specific section of page-->
 
           <a href="#bone" class="scroll"><span class="glyphicon glyphicon-pushpin" type="button"></span></a><!--Button that navigates to a specific section of page-->
 
           <h3>Bone Incision Experiment Code</h3>
 
           <h3>Bone Incision Experiment Code</h3>
 
           <p class="about-content">MATLAB code for the bone incision experiments.</p><!--text displayed under button-->
 
           <p class="about-content">MATLAB code for the bone incision experiments.</p><!--text displayed under button-->
 
         </div>
 
         </div>
     
+
     
 
       </div>
 
       </div>
 
     </section>
 
     </section>

Revision as of 09:11, 20 August 2015

Dry Lab

Appendix 3: Chromate Biosensor Code

Chromate Model Code

MATLAB code for chromate model.

Bone Incision Experimental Data

Raw data for the bone incision experiments.

Bone Incision Experiment Code

MATLAB code for the bone incision experiments.

Chromate Model Code

Lorem ipsum dolor sit amet, nostrud maiestatis quaerendum ne sed. Reque possit ne sea. Te dico labitur mediocritatem ius. Error timeam noluisse eos ad, eam ne magna meliore contentiones, nec ei volumus persecuti. Dicit animal definitionem et mel, nonumy tacimates nec in. Vis mucius periculis at. At est vidit scripserit repudiandae, agam porro sea ne. Sea et stet tibique praesent, vim et legere aperiri. Quo doming vocibus eleifend no. Cu vis partem graeci facilisis. Falli inciderint mei no. Assentior suscipiantur mea id. Vis quas electram prodesset cu, choro omnium conclusionemque an his. Vis latine equidem perfecto ad.

Back to Top View Description of Model

Bone Incision Data

Lorem ipsum dolor sit amet, nostrud maiestatis quaerendum ne sed. Reque possit ne sea. Te dico labitur mediocritatem ius. Error timeam noluisse eos ad, eam ne magna meliore contentiones, nec ei volumus persecuti. Dicit animal definitionem et mel, nonumy tacimates nec in. Vis mucius periculis at. At est vidit scripserit repudiandae, agam porro sea ne. Sea et stet tibique praesent, vim et legere aperiri. Quo doming vocibus eleifend no. Cu vis partem graeci facilisis. Falli inciderint mei no. Assentior suscipiantur mea id. Vis quas electram prodesset cu, choro omnium conclusionemque an his. Vis latine equidem perfecto ad.

Bone Incision Experiment Code

code.


  MATLAB code from bone.m file


k=6.23*10^(-9);%wear coefficient
W=zeros(1,101);%zero vector for calculated volume of bone incision m^3
s=(0:0.001:0.1);%range of values for blade length m, from 0 to 10cm
p=(0:2:200);%range of values for applied force N, from 0 to 200N

for i=1:101
    for j=1:101
    W(i,j)=k*p(i)*s(j); %Archards Equation in two for loops
    %to create a matrix of possible values for volume
end
end

surf(p,s,W)%creates a surface plot, where the height and therefore colour are dependand on the matric W
grid on
title('Relationship Between Volume of Bone Incison, Force and Blade length')
zlabel('Volume of Incision/m^3')
ylabel('Blade Length/m')
xlabel('Applied Load/N')
Back to Top View Description of Experiment

To see the MATLAB code for the BioSpray section of the project or the Fingerprint Aging section of the project use the following buttons.

Appendix 2: Fingerprint Aging Appendix 1: BioSpray