-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathengineering.html
1270 lines (1226 loc) · 71.7 KB
/
engineering.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{% extends "my-layout.html" %}
{% block sidebar_content %}
<ul class="nav nav-pills flex-column mb-auto">
<li class="nav-item">
<a href="#section1" class="nav-link link-dark" aria-current="page">
<svg class="bi me-2" width="16" height="16">
<use xlink:href="#home" />
</svg>
Success
</a>
</li>
<li>
<a href="#section2" class="nav-link link-dark">
<svg class="bi me-2" width="16" height="16">
<use xlink:href="#speedometer2" />
</svg>
Module 0
</a>
</li>
<li>
<a href="#section3" class="nav-link link-dark">
<svg class="bi me-2" width="16" height="16">
<use xlink:href="#table" />
</svg>
Module 1
</a>
</li>
<li>
<a href="#section4" class="nav-link link-dark">
<svg class="bi me-2" width="16" height="16">
<use xlink:href="#table" />
</svg>
Module 2
</a>
</li>
<li>
<a href="#section5" class="nav-link link-dark">
<svg class="bi me-2" width="16" height="16">
<use xlink:href="#grid" />
</svg>
Module 3
</a>
</li>
<li>
<a href="#section5" class="nav-link link-dark">
<svg class="bi me-2" width="16" height="16">
<use xlink:href="#grid" />
</svg>
Module 4
</a>
</li>
</ul>
{% endblock %}
{% block heading %}Engineering success{% endblock %}
{% block page_content %}
<div class="content">
<div class="m-2 mb-16">
<img style="width: 45%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/engineering-success-dbtl/mm.png" class="img-responsive rounded mx-auto d-block mt-4">
<p class="mt-5 MAIN-STUFF">MODULE 0</p>
<p class="MAIN-STUFF"><u>Overview: </u></p>
<p class="sub-stuff">The first module of our DBTL cycle shows how our initial project idea shifted on the basis of
iHP and testing. </p>
<p class="MAIN-STUFF"><u>Design: </u></p>
<p class="sub-stuff">
The team of MIT-MAHE set out to solve the problem of <b>triclocarban entering our environment</b> and causing
major issues. We initially identified a novel TccA amidase enzyme expressed in Ochrobactrum sp. TCC-2. This
amidase had only 27-38% sequence similarity with other known amidases. This enzyme is capable of breaking down
triclocarban (TCC) into 4-chloroaniline and 3,4-dichloroaniline.[1] <br><br>
We initially wanted to implement this system within the aeration tank of the wastewater treatment plant. The aim
was to increase the enzyme efficiency to function within the hydraulic retention time of the wastewater
treatment plant. <br><br>
Hydraulic retention time (HRT) of the aeration tank of a wastewater treatment plant is the amount of time taken
for one full volume of the aeration tank to pass out of the aeration tank after completion of process. <br>
HRT=Volume of the aeration tank/flow rate of the water
Commonly, HRT for <b>conventional activated sludge processes is about 2-24 hours</b>[7].<br><br>
We wanted to achieve this by modifying amino acid residues through an in-silico version of site directed
mutagenesis.
We wanted to identify the key residues involved in the catalytic action and improve the binding affinity of the
substrate to the enzyme, which we had initially believed might increase the efficiency of the enzyme.
</p>
<p class="MAIN-STUFF"><u>Build: </u></p>
<p class="sub-stuff">
The TccA amidase enzyme has not been fully characterized in literature. Therefore, the first step before
building our genetic circuit was to understand the structure, binding site and working of the enzyme. <br><br>
We predicted the structure of the TccA amidase as well as the binding sites. Since most of our data was not
obtained via experimentation, our Human practices team reached out to many experts, including Mr. Omkar Khade
and Dr. Gurunath Ramanathan, to learn more about the feasibility of our project idea.
</p>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading1">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse1" aria-expanded="true"
aria-controls="collapse1">
<u>Catalytic Triad</u>
</button>
</h4>
<div id="collapse1" class="accordion-collapse collapse show" aria-labelledby="heading1">
<div class="accordion-body">
<p class="sub-stuff">
Through literature survey, we found the catalytic triad of the amidase family to be Ser-Ser-Lys. To
identify exactly which triad (Ser-Ser-Lys) of the amidase family was involved, we used multiple
alignments.
<br>
<br>
GRASP (collection of tools to perform and analyze ancestral sequence reconstruction) shows the amino
acid residues that most probably form the binding pocket of the enzyme. Here, Ser 155 and Ser 179 showed
85% confidence scores showing that it interacts with TCC and Lys 79 with 59% confidence score showing it
is not actively involved in bond cleavage but does help in stabilizing the interactions.
</p>
</div>
</div>
</div>
</div>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading2">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse2" aria-expanded="true"
aria-controls="collapse2">
<b>Alphafold</b>
</button>
</h4>
<div id="collapse2" class="accordion-collapse collapse show" aria-labelledby="heading2">
<div class="accordion-body">
<figure>
<img style="width: 40%; height: auto;"
src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/model-which-was-used-for-this-predicted-by-alpha-fold-and-present-in-uniprot.png" class="img-responsive rounded mx-auto d-block mt-4">
<figcaption style="text-align:center"> <i>Model which was used for this (predicted by Alpha Fold and present in UniProt)
</i>
</figcaption>
</figure>
<p class="sub-stuff">
We predicted structures by different softwares like SWISS-MODEL, Alphafold and iTASSER. For the test
stage, we proceeded with the Alphafold model as it showed the highest percentage of residues lying
within the accepted region of the Ramachandran plot.
</p>
</div>
</div>
</div>
</div>
<p class="MAIN-STUFF"><u>Test: </u></p>
<p class="sub-stuff">
We performed docking studies with the predicted binding site. The docking results from Autodock Vina and
SeamDock showed ΔG values of -7.51 kcal/mol and -4.7 kcal/mol respectively. This implies that TCC has a good
affinity towards the TccA amidase protein. <br><br>
</p>
<figure>
<img style="width: 40%; height: auto;"
src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/2d-visualization-of-our-docked-structure-in-discovery-studio-visualizer-dsv.jpg"
class="img-responsive rounded mx-auto d-block mt-4">
<figcaption style="text-align:center"> <i>2D visualization of our docked structure in Discovery Studio Visualizer (DSV)</i>
</figcaption>
</figure>
<p class="sub-stuff">
These ΔG values imply that there is a stable binding of TCC to the TccA amidase. This suggests that the
predicted binding sites were correct.
</p>
<p class="MAIN-STUFF"><u>Learn: </u></p>
<p class="sub-stuff">Through iHP meetings with Mr. Omkar Khade and Dr. Gurunath Ramanathan, we learnt that
manually altering the amino acids in close proximity to the catalytic triad requires a comprehensive
understanding of the individual functions of each amino acid involved. A random mutagenesis approach would be
difficult to perform in-silico as such experiments are usually only performed in-vitro. As a result, we felt the
best way forward was to focus on the initial problem statement-dealing with TCC in wastewater, with an
alternative approach.
</p>
<hr>
<p class="mt-5 MAIN-STUFF">MODULE 1</p>
<p class="MAIN-STUFF"><u>Design: </u></p>
<p class="sub-stuff">
Ensuring our focus on the problem statement, and taking note of everything learnt in Module 0, we looked back
towards our previous human practices interactions. One of the major questions that had been posed to us was the
formation of toxic byproducts 4-chloroaniline and 3,4-dichloroaniline on biodegrading TCC. Considering these
changes, we decided to focus our project on breaking down the TCC into non-toxic byproducts. <br><br>
Through literature surveys, we studied the presence of gene clusters as a part of other pathways in bacteria
that could degrade the above mentioned by-products.
However, insertion of such large cassettes within known model organisms could cause severe metabolic load on the
cell and may lead to stunted growth or loss of plasmid. <br><br>
Hence, we looked for potential model organisms that had not been characterized for this purpose. An important
parameter was the existence of pathways that could degrade the chloroaniline byproducts of TCC breakdown.
Through extensive literature survey, we narrowed down our possible chassis options to three species capable of
degrading the byproducts -<i>Acinetobacter baylyi </i>[3], <i> Pseudomonas putida </i>[4] [5]and <i> Pseudomonas
fluorescens </i>[6]. <br>
All three of these organisms had the natural capability to degrade the toxic by-products. The other major
criteria we considered included:
<ul style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;">
<li>Survivability of the bacteria in the pH range of the wastewater and sludge(6.5-8)</li>
<li>Survivability of the bacteria in the temperature range of the sludge tank of the WWTP(20-37° C)</li>
<li>Survivability at different TCC concentration ranges present in the sludge(13,000-21,000 ng/ml of TCC or
13-21 ppm of TCC)</li>
</ul><br><br>
</p>
<p class="sub-stuff">
Aim: To design experiments to check which of our three chosen bacterial species: <i>Pseudomonas putida,
Pseudomonas fluorescens</i>, and <i>Acinetobacter baylyi</i> had the best survivability in wastewater
treatment plant conditions
<br><br>
As TCC does not uniformly dissolve in small volumes of water, we dissolve TCC in acetonitrile at first and then
dilute this mixture in water. To ensure that acetonitrile does not have any adverse effect on the growth of our
bacteria, we take acetonitrile-containing media as a condition as well.
</p>
<p class="MAIN-STUFF"><u>Build: </u></p>
<p class="sub-stuff">
<b>Growth Curves</b> To perform these experiments, we inoculated the bacteria in media that simulated the
conditions of the sludge tank.The growth was measured by checking the arbitrary units of optical density at
600nm. To convert to absolute units, a calibration curve was plotted for wet weight of the cell vs OD.
</p>
<ol style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;">
<li>
<b>pH</b>
The growth of the bacterial species at pH range of 6 to 8 was growth in LB media.
</li>
<li>
<b>Temperature</b>
For temperature studies, we inoculated the bacteria in LB broth media and studied the growth over a
temperature range of 24°C to 37°C.
</li>
<li>
<b>Acetonitrile</b>
To dissolve and dilute TCC in water, we need to dissolve it in acetonitrile first as TCC has extremely low
solubility in water. Since acetonitrile will be in the media that our bacteria grow in, we have to make sure
the presence of this compound does not impede the steady growth of our organisms.
</li>
<li>
<b>TCC (Sludge concentration)</b>
To discern whether our organisms can survive and be effective in the sludge tank, we need to know whether they
can survive in the concentration of TCC within the sludge tank and effectively break down this TCC and its
constituent degradation products. Hence, we inoculated our bacteria in media containing a range of TCC
concentrations that is generally present in the sludge (13000 - 21000ng\ml).
</li>
</ol>
<p class="MAIN-STUFF"><u>Test: </u></p>
<p class="sub-stuff">
The growth curves obtained from all the experiments we performed for all three of our possible chassis’ have
been listed below:
</p>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading3">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse3" aria-expanded="true"
aria-controls="collapse3">
<b>Effect of Acetonitrile</b>
</button>
</h4>
<div id="collapse3" class="accordion-collapse collapse show" aria-labelledby="heading3">
<div class="accordion-body">
<p class="sub-stuff">
<b><i>Pseudomonas putida</i></b>
</p>
<ol style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;">
<li>
Growth curve of <i>Pseudomonas putida</i> in the presence of acetonitrile <br>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/p-putida-acetonitrile.png"
class="img-responsive rounded mx-auto d-block mt-4">
<br>
Inference: The presence of acetonitrile in the growth media does not affect the growth of
<i>Pseudomonas putida</i>.
</li>
<br><br>
<li>
Growth curve of <i>Pseudomonas fluorescens</i> in presence of acetonitrile. <br>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/p-fluorescens-acetonitrile.png"
class="img-responsive rounded mx-auto d-block mt-4">
<br>
Inference: It was found that the presence of acetonitrile does not appreciably affect the growth of
<i>Pseudomonas fluorescens</i>.
</li>
<br><br>
<li>
Growth curve of <i>Acinetobacter baylyi</i> in the presence of acetonitrile <br>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/a-baylyi-acetonitrile.png"
class="img-responsive rounded mx-auto d-block mt-4">
<br>
Inference: It was observed that acetonitrile affects the growth of <i>Acinetobacter baylyi</i> and
acts as an inhibitor.
</li>
</ol>
</div>
</div>
</div>
</div>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading4">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse4" aria-expanded="true"
aria-controls="collapse4">
<b>Effect of pH</b>
</button>
</h4>
<div id="collapse4" class="accordion-collapse collapse show" aria-labelledby="heading4">
<div class="accordion-body">
<ol style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;">
<li>
Growth curve of <i>Pseudomonas putida</i> at different pH values<br>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/p-putida-temp.png"
class="img-responsive rounded mx-auto d-block mt-4">
<br>
Inference: The presence of acetonitrile in the growth media does not affect the growth of
<i>Pseudomonas putida</i>.
</li>
<br><br>
<li>
Growth curves of <i>Pseudomonas fluorescens</i> at different pH values<br>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/p-fluorescens-ph.png"
class="img-responsive rounded mx-auto d-block mt-4">
<br>
Inference: The optimal pH for growth of <i>Pseudomonas fluorescens</i> was observed to be pH 8.
</li>
<br><br>
<li>
Growth curve of <i>Acinetobacter baylyi</i> at different pH values<br>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/a-baylyi-ph.png"
class="img-responsive rounded mx-auto d-block mt-4">
<br>
Inference: It was observed that the growth of <i>Acinetobacter baylyi</i> was not deterred by
variation in the pH. Thus we infer that it would thrive within this pH range typically found in
wastewater treatment plants.
</li>
</ol>
</div>
</div>
</div>
</div>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading5">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse5" aria-expanded="true"
aria-controls="collapse5">
<b>Effect of Temperature</b>
</button>
</h4>
<div id="collapse5" class="accordion-collapse collapse show" aria-labelledby="heading5">
<div class="accordion-body">
<ol style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;">
<li>
Growth curve of <i>Pseudomonas putida</i> at 24° C and 37° C<br>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/p-putida-temp.png"
class="img-responsive rounded mx-auto d-block mt-4">
<br>
Inference: It is observed that <i>Pseudomonas putida </i> exhibits superior growth at 24 degrees
Celsius, whereas its growth is adversely affected at 37 degrees Celsius.
</li>
<br><br>
<li>
Growth curve of <i>Pseudomonas fluorescens</i> at 24° C and 30° C <br>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/p-fluorescens-temp.png"
class="img-responsive rounded mx-auto d-block mt-4">
<br>
Inference: It was observed that <i>Pseudomonas fluorescens</i> exhibits better growth at 24° C.
</li>
<br><br>
<li>
Growth curve of <i>Acinetobacter baylyi</i> at 30° C and 37° C <br>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/a-baylyi-temp.png"
class="img-responsive rounded mx-auto d-block mt-4">
<br>
<!--Below inference needs to be changed-->
Inference: It was observed that the growth of <i>Acinetobacter baylyi</i> was not deterred by
variation in the temperature. Thus we infer that it would thrive within this temperature range typically found in
wastewater treatment plants.
</li>
</ol>
</div>
</div>
</div>
</div>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading6">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse6" aria-expanded="true"
aria-controls="collapse6">
<b>Effect of TCC in Sludge Level Concentrations</b>
</button>
</h4>
<div id="collapse6" class="accordion-collapse collapse show" aria-labelledby="heading6">
<div class="accordion-body">
<ol style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;">
<li>
Growth curve of <i>Pseudomonas putida</i> at different concentrations of TCC (sludge concentration)<br>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/p-putida-tcc-sludge.png"
class="img-responsive rounded mx-auto d-block mt-4">
<br>
Inference: Growth of <i>Pseudomonas putida</i> was stunted in the presence of TCC as compared to the
control.
</li>
<br><br>
<li>
Growth curve of <i>Pseudomonas fluorescens</i> in the presence of TCC (sludge concentration)<br>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/p-fluorescens-tcc-sludge.png"
class="img-responsive rounded mx-auto d-block mt-4">
<br>
Inference: It was observed that TCC did not deter the growth of <i>Pseudomonas fluorescens</i>.
</li>
<br><br>
<li>
Growth curve of <i>Acinetobacter baylyi</i> in the presence of different concentrations of TCC (sludge
concentration)<br>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/a-baylyi-tcc-sludge.png"
class="img-responsive rounded mx-auto d-block mt-4">
<br>
<b>Inference:</b> Presence of TCC at such high concentrations does not inhibit the growth of
<i>Acinetobacter baylyi</i>. However, the TCC was dissolved in acetonitrile. Our final inference
is that the inhibitory effect that existed due to the usage of acetonitrile appeared to be
canceled out by the presence of TCC.
</li>
</ol>
</div>
</div>
</div>
</div>
<p class="MAIN-STUFF"><u>Learn: </u></p>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading7">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse7" aria-expanded="true"
aria-controls="collapse7">
<b><i>Pseudomonas putida:</i></b>
</button>
</h4>
<div id="collapse7" class="accordion-collapse collapse show" aria-labelledby="heading7">
<div class="accordion-body">
<ul style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;">
<li>It has a lag phase of roughly 4 hours, after which its growth plateaus become steady. </li>
<li>We found that it showed optimal growth at 30ºC and 7.5pH</li>
<li>Its growth is stunted under the presence of TCC. </li>
<li>It shows reduced growth at 37ºC.</li>
</ul>
<p class="sub-stuff">
<b><u>Conclusion:</u></b>
<br><br>
After taking these observations into account, our final conclusion was to eliminate this strain as it
does not proliferate well in the temperature conditions observed in the sludge tank of a wastewater
treatment plant.
</p>
</div>
</div>
</div>
</div>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading8">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse8" aria-expanded="true"
aria-controls="collapse8">
<b><i>Pseudomonas fluorescens:</i></b>
</button>
</h4>
<div id="collapse8" class="accordion-collapse collapse show" aria-labelledby="heading8">
<div class="accordion-body">
<ul s style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;">
<li>Shows good growth at 30ºC, 7.5 pH.</li>
<li>Growth is stunted under the presence of TCC. </li>
</ul>
<p class="sub-stuff">
<b><u>Conclusion:</u></b>
<br><br>
After taking these observations into account, our final conclusion was to rule this strain out as it
does not proliferate well in the pH range observed in the sludge tank of a wastewater treatment plant.
</p>
</div>
</div>
</div>
</div>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading9">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse9" aria-expanded="true"
aria-controls="collapse9">
<b><i>Acinetobacter baylyi:</i></b>
</button>
</h4>
<div id="collapse9" class="accordion-collapse collapse show" aria-labelledby="heading9">
<div class="accordion-body">
<ul style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;">
<li>It has a lag phase of 8-9 hours using primary inoculum</li>
<li>The lag phase for the secondary inoculation was about 2-3 hours. We tested its growth by altering
the temperature, pH, and TCC concentration. </li>
<li>We found that 30ºC, 7.5 pH were the ideal conditions for growth and surprisingly, the presence of
such high concentrations of TCC did not impede its exponential growth. Hence, <i>A. baylyi</i> can
proliferate and grow uninhibited in the presence of TCC.</li>
</ul>
<p class="sub-stuff">
<b><u>Conclusion:</u></b>
<br><br>
Due to its ability to proliferate in environments containing near-toxic levels of TCC as well as with
all the other parameters that it would be subjected to within the sludge tank of a wastewater treatment
plant, we were able to come to the conclusion that <i>Acinetobacter baylyi</i> is the best choice for
our bacterial chassis. The other two bacteria were promptly rejected due to their growth being stunted
in the temperature and pH range of the sludge tank.
</p>
</div>
</div>
</div>
</div>
<hr>
<p class="mt-5 MAIN-STUFF">MODULE 2</p>
<p class="MAIN-STUFF"><u>Design:</u></p>
<p class="sub-stuff">
To carry out the wet lab experiments, including cloning, we started out by designing our part and plasmid. <br>
Aim: To create a genetic circuit containing TccA amidase and insert it in <i> E.coli </i> to study its
expression and characterise the enzyme.<br><br>
<u>Part Design</u>
<br><br>
The purpose of the amidase protein <a href="http://parts.igem.org/Part:BBa_K4641000">(Part number:
BBa_K4641000)</a> in the chassis is to breakdown Triclocarban (3,4,4′-Trichlorocarbanilide) into
3,4-dichloroaniline and 4-chloroaniline. Our target protein is naturally constitutively expressed in
<i>Ochrobactrum sp. TCC-2</i>
</p>
<img src="" style="img-fluid">
<img src="" style="img-fluid">
<p class="sub-stuff">
<u>Plasmid Design</u><br><br>
The CarbanEl system is based on a Gibson assembly cloning system. The gene fragment is designed and synthesized
such that the overhangs to integrate the gene into pET22b+ are already added. For the characterization and study
of the enzyme activity, we expressed the amidase gene in <i> E. coli BL21 </i>. However, our final intended
chassis is <i>Acinetobacter baylyi</i>
<br>
The plasmid design is as below:
</p>
<img style="width: 40%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/design-part-page/plasmid.png" class="img-responsive rounded mx-auto d-block mt-4">
<p class="sub-stuff">
<u>Genetic circuit design:</u><br><br>
Gene regulation refers to how a particular gene expression can be controlled. It includes a variety of
mechanisms that can be used to increase or decrease the expression or production of specific gene products.
</p>
<img style="width: 50%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/design-part-page/genetic-circuit.jpeg" class="img-responsive rounded mx-auto d-block mt-4">
<figcaption style="text-align:center"> <i> TccA Gene Regulation in Escherichia coli</i> </figcaption>
<p class="MAIN-STUFF"><u>Build:</u></p>
<p class="sub-stuff">
The first step was to build our genetic circuit in <i> E.coli DH5alpha</i> to study the expression and
degradation kinetics of our part.
<br><br>
We started with amplifying our tccA fragment and performing PCR clean-up. We isolated pET22b+ plasmid and
proceeded with the Gibson Assembly to insert the TccA amidase gene.
The competent <i>E. Coli E.coli DH5alpha</i> cells were prepared by CaCl<sub>2</sub> method and the cells were
transformed.
</p>
<!--(Insert image: transformed plate in DH5alpha)-->
<img style="width: 30%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/transformed-plate-in-dh5alpha.jpg"
class="img-responsive rounded mx-auto d-block mt-4">
<figcaption style="text-align:center"> <i> Transformed plate-contains tccA Gibson assembled pET22b+ transformed DH5alpha cells </i> </figcaption>
<p class="sub-stuff">
After a confirmatory colony PCR to check the presence of our insert, we transformed the Gibson-assembled plasmid
into <i> E.coli BL21 </i> and then we moved towards expression studies.
</p>
<p class="MAIN-STUFF"><u>Test:</u></p>
<p class="sub-stuff">
<u>Cloning:</u><br>
Double digestion was then performed on the isolated plasmid of the transformed cells to confirm the presence of
the fragment which was successful. We then went on to expression studies. SDS-PAGE was carried out but distinct
bands were not observed. This could have been due to the extended time for destaining.
</p>
<!--(insert image: SDS gel image)-->
<figure>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/sds-gel-image.png" class="img-responsive rounded mx-auto d-block mt-4">
<figcaption style="text-align:center"> <i>SDS Page</i> </figcaption>
</figure>
<p class="sub-stuff">
<b><u>Genetic circuit</u></b><br><br>
The genetic circuit represents the regulation of TccA gene in <i>E.coli</i>. Our gene, including RBS, is 1562
bps long; assuming that the degradation of mRNA is negligible the time taken to transcribe our gene is 6.25
secs.<br><br>We modeled the protein production in <i> E.coli </i>. However, in the future, we can study and
model the protein production rate in our preferred chassis <i>Acinetobacter baylyi.</i>
</p>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading10">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse10" aria-expanded="true"
aria-controls="collapse10">
<b>Modeling the genetic Circuit:</b>
</button>
</h4>
<div id="collapse10" class="accordion-collapse collapse show" aria-labelledby="heading10">
<div class="accordion-body">
<img style="width: 50%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/model-dl/eqn-1.png" class="img-responsive rounded mx-auto d-block mt-4">
<table border="1" style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;">
<tr>
<th>Parameter</th>
<th>Explanation</th>
<th>Units</th>
</tr>
<tr>
<td>k<sub>1</sub></td>
<td>Transcription rate of T7 RNA polymerase</td>
<td>bps/sec</td>
</tr>
<tr>
<td>k<sub>2</sub></td>
<td>k<sub>2</sub> is the translation rate of a ribosome in E.coli</td>
<td>AAs/sec</td>
</tr>
<tr>
<td>d<sub>1</sub></td>
<td>Degradation rate of mRNA</td>
<td>bps/sec</td>
</tr>
<tr>
<td>d<sub>2</sub></td>
<td>Degradation rate of protein</td>
<td>AA/sec</td>
</tr>
</table>
<p class="sub-stuff">
Assuming that degradation rate of mRNA is low and almost negligible, d<sub>1</sub> ≈ 0
<br>
Assuming that degradation of protein is low and almost negligible, d<sub>2</sub> ≈ 0
<br><br>
k<sub>1</sub> is Transcription rate of T7 RNA polymerase = 250 bps/s<br><br>The length of TccA gene,
including the RBS and PelB = 1562 bps
<br><br>
k<sub>1</sub> = 1562/250 = 6.25s <br><br>
[mRNA] = k<sub>1</sub> [Gene] - d1[mRNA] [mRNA] = k<sub>1</sub> [Gene]<br>
<b>mRNA = 6.25 [Gene]</b>
<br>
k<sub>2</sub> is the translation rate of a ribosome in <i>E.coli</i>
<br>
Length of the mRNA = 1562 bps
<br>
[Protein] = k<sub>2</sub> [mRNA]- d<sub>2</sub>[Protein]
<br>
[Protein] = k<sub>2</sub>
<br>
Assuming that the translation rate of a ribosome in <i>E.coli</i> is 12. 1 AA/sec,
<br>
Our protein = 515 AA (including RBS and PelB)
<br>
k<sub>2</sub>
= 42.56 secs
<br>
<b>Protein = 42.56 [mRNA]</b>
</p>
</div>
</div>
</div>
</div>
<p class="sub-stuff"><b><u>Design equation based on degradation kinetics</u></b></p>
<p class="sub-stuff">The rate expression is related to the rate at which the TccA amidase enzyme from the
<i>Ochrobactrum sp.</i> can degrade TCC. Since our chassis for implementation is <i>Acinetobacter baylyi</i>,
which is also gram-negative like <i>Ochrobactrum sp.</i>TCC-2, the rate of transport or the passive diffusion of
TCC into the cell is assumed to be similar in both bacteria. The rate of degradation of the TCC inside the cell
by the TccA amidase enzyme produced by our chassis will be very similar. The time calculated here for 21 PPM
(the highest concentration of TCC found in sludge) will be used to model the bioreactor.
</p>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading11">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse11" aria-expanded="true"
aria-controls="collapse11">
<b>Study of the design equation</b>
</button>
</h4>
<div id="collapse11" class="accordion-collapse collapse show" aria-labelledby="heading11">
<div class="accordion-body">
<p class="sub-stuff">
In this study [1], we have used the values as shown in the tabular column below.
These values were used to calculate -r<sub>A</sub> (the rate of reaction with respect to reactant A or
in our case TCC) using differential calculation.
</p>
<table border="1" style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;">
<tr>
<th>Time (hours)</th>
<th>CA(concentration of TCC in 𝞵m )</th>
<th>-r<sub>A</sub></th>
</tr>
<tr>
<td>0</td>
<td>31.7</td>
<td>3.667</td>
</tr>
<tr>
<td>10</td>
<td>10.8</td>
<td>0.9375</td>
</tr>
<tr>
<td>24</td>
<td>1.3</td>
<td>0.15</td>
</tr>
<tr>
<td>48</td>
<td>0.2</td>
<td>0.014</td>
</tr>
<tr>
<td>72</td>
<td>0</td>
<td>0</td>
</tr>
</table>
<img style="width: 45%; height: auto;"
src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/concentration-of-substrate-vs-time.jpg"
class="img-responsive rounded mx-auto d-block mt-4">
<p class="sub-stuff" style="text-align:center;"><i>Concentration of substrate vs. time</i></p>
<p class="sub-stuff">
<u>Assuming first order kinetics</u><br>
-r<sub>A</sub>= K(C<sub>A</sub>)<sup>n</sup><br>
ln(-r<sub>A</sub>) = lnK+n (lnC<sub>A</sub>)
</p>
<table border="1" style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;">
<tr>
<th>ln (-r<sub>A</sub>)</th>
<th>ln (C<sub>A</sub>)</th>
</tr>
<tr>
<td>3.456</td>
<td>1.299</td>
</tr>
<tr>
<td>2.379</td>
<td>-0.0645</td>
</tr>
<tr>
<td>0.262</td>
<td>-1.897</td>
</tr>
<tr>
<td>-1.609</td>
<td>-4.566</td>
</tr>
<tr>
<td>-</td>
<td>-</td>
</tr>
</table>
<img style="width: 45%; height: auto;" src=" https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/ln-ca-vs-ln-ra.png"
class="img-responsive rounded mx-auto d-block mt-4">
<p class="sub-stuff">
From the above graph, we know that the following data:<br>
Slope = n = 1.1198 ≈ 1, which implies that it follows first-order kinetics.<br>
Intercept = ln k = -2.5633 <br>
Therefore, k = e<sup>-2.5633</sup><br>
k= 0.082, which is the calculated rate expression. <br>
From the literature, we learned the value of k [1].<br>
k = 0.112
</p>
</div>
</div>
</div>
</div>
<p class="MAIN-STUFF"><u>Learn:</u></p>
<p class="sub-stuff">
On comparing our values to the literature, we get that the k values are approximately equal, thus validating our
differential calculus method.<br><br>Hence, TccA amidase follows first-order kinetics.<br><br>Future cycles
would involve the validation of these kinetics through experimentation.</p>
<hr>
<p class="mt-5 MAIN-STUFF">MODULE 3</p>
<p class="MAIN-STUFF"><u>Summary</u></p>
<p class="sub-stuff">
As mentioned in our <a href="https://2023.igem.wiki/mit-mahe/project-implementation">implementation</a>, we aim
to introduce a bioreactor in the wastewater treatment plant to treat the primary sludge and clear it of our
target contaminant, Triclocarban (TCC). <br><br>
From the results of our previous module of the DBTL cycle, <i>Acinetobacter baylyi</i> GFJ2 was the most viable
choice for a chassis because it had the best growth in high concentrations of TCC and a good survivability for
the widely varying conditions of wastewater treatment plants. Additionally, the bacteria has the natural ability
to degrade the toxic byproducts produced by the degradation of TCC into non toxic byproducts (cis-muconic acid)
that can be taken by the Krebs cycle [3].
</p>
<p class="MAIN-STUFF"><u>Design:</u></p>
<p class="sub-stuff">
The team came up with multiple bioreactor designs for the implementation of our project that take into account
the degradation kinetics of the enzyme, the growth kinetics of the bacteria, and the adsorption kinetics of TCC
onto the packing material.<br><br>
We have currently proposed a lab scale bioreactor due to the fact that we need to conduct further optimisation
experiments to upscale into a bioreactor that is feasible on an industrial scale.
</p>
<!--insert image of bioreactor-->
<p class="sub-stuff">
We wanted to design a sludge based bioreactor where the primary sludge becomes the feed. The primary sludge is
almost 97-99% water [4]. We ideated this after a visit to a wastewater treatment plant in West Bengal, India.
<br><br>
We wanted the bacteria that degraded the TCC to be immobilized within a matrix. Literature suggests that cell
immobilised systems are far superior to free cell suspensions as it avoids cell washout and improves reaction
rates [5]. <br><br>
We found that biochar, a carbon-rich solid product produced from the pyrolysis of biomass residues, was an
attractive option for an immobilisation matrix due to its low cost, easy availability and ability to immobilize
cells efficiently[6].<br><br>
</p>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading12">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse12" aria-expanded="true"
aria-controls="collapse12">
<b><i><u>Design 1- Continuous flow packed-bed reactor</u></i></b>
</button>
</h4>
<div id="collapse12" class="accordion-collapse collapse show" aria-labelledby="heading12">
<div class="accordion-body">
<p class="sub-stuff">
The design of this reactor would be such that the primary sludge would continuously flow through the
packed bed over the span of two days. <br><br>
The primary sludge would be pumped from the bottom of the reactor and exited from the top. The reactor
top would be perforated to allow airflow, and the reactor would be continuously sparged with air to
increase mass transfer and provide oxygen to the microbes for proliferation. <br><br>
The reactor would be fitted with a pressure gauge in order to measure and maintain the pressure drop
across the reactor.<br><br>
The reactor will operate in continuous flow under unsterile conditions.<br><br>
</p>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/packed-bed-reactor.png"
class="img-responsive rounded mx-auto d-block mt-4">
</div>
</div>
</div>
</div>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading13">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse13" aria-expanded="true"
aria-controls="collapse13">
<b><i><u>Design 2 - Continuous stirred tank reactor</u></i></b>
</button>
</h4>
<div id="collapse13" class="accordion-collapse collapse show" aria-labelledby="heading13">
<div class="accordion-body">
<p class="sub-stuff">
In this design, the primary sludge would enter from the top of the reactor and exit from the bottom of
the reactor. <br><br>
The biochar with the immobilized bacteria would be fixed onto the walls of the reactor using a
honeycomb-like scaffold. <br><br>
The reactor would have a stirrer that would agitate the sludge and aerate it to promote mass transfer
and adsorption onto the biochar. To prevent excess heat from being generated, the reactor would have
cooling jackets surrounding it. A temperature gauge would be added to measure the temperature and
regulate it to promote the exponential growth of microorganisms. <br><br>
A level gauge would be added in order to prevent the overflow of the sludge in the reactor. A pipe at
the top would be introduced to recycle the overflow into the tank. The reactor will operate in
continuous flow under unsterile conditions.<br><br>
</p>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/stirred-tank-reactor.png"
class="img-responsive rounded mx-auto d-block mt-4">
</div>
</div>
</div>
</div>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading14">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse14" aria-expanded="true"
aria-controls="collapse14">
<b><i><u>Design 3 - Batch stirred tank reactor</u></i></b>
</button>
</h4>
<div id="collapse14" class="accordion-collapse collapse show" aria-labelledby="heading14">
<div class="accordion-body">
<p class="sub-stuff">
This reactor would be similar to the continuous stirred tank bioreactor, except the sludge would stay in
the tank for longer to allow more time for mass transfer. The rpm of the stirrer would be slower, and a
sparger would be added to increase aeration. The rest of the elements would remain the same as in Design
2. The reactor will be operated in batch mode in unsterile conditions.
</p>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/batch-stirred-tank.png"
class="img-responsive rounded mx-auto d-block mt-4">
</div>
</div>
</div>
</div>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading15">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse15" aria-expanded="true"
aria-controls="collapse12">
<b><i><u>Design 4 - batch packed bed reactor</u></i></b>
</button>
</h4>
<div id="collapse15" class="accordion-collapse collapse show" aria-labelledby="heading15">
<div class="accordion-body">
<p class="sub-stuff">
The packed bed reactor would consist of a packed bed with biochar and immobilized bacteria as packing
material between two perforated plates. The primary sludge would enter from the top of the reactor and
flow to the bottom with the help of gravity. This eliminates the need for a pump to fill the sludge in
the reactor. A sparger at the bottom center would aerate the sludge and would promote a vertical
circular flow due to Bernoulli's principle. This will help increase mass transfer efficiency. <br><br>
The sparger would have a valve to prevent the backflow of sludge into it, and the sparging would begin
before the inflow of sludge into the reactor began. The outlet pipe will also have a valve to prevent
sludge from leaving the tank before the specified time. The valve in the inlet pipe is to control the
flow rate of the sludge entering the tank. The reactor would be fitted with a pressure gauge to measure
and maintain the pressure drop across the reactor. The reactor will be operated in batch mode in
unsterile conditions.
</p>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/batch-packed-bed-reactor.png"
class="img-responsive rounded mx-auto d-block mt-4">
</div>
</div>
</div>
</div>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading15">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse15" aria-expanded="true"
aria-controls="collapse12">
<b><i><u>Design 5 - fluidized bed</u></i></b>
</button>
</h4>
<div id="collapse15" class="accordion-collapse collapse show" aria-labelledby="heading15">
<div class="accordion-body">
<p class="sub-stuff">
This design would consist of a fluidized bed with the packing material. The fluidized bed will have a
sparging system with appropriate tubing to control the flow rate of air. This would allow an upward,
circular flow of the sludge. This agitation will increase mass transfer efficiency. <br><br>
The continuous flow would be due to the movement of the liquid phase (primary sludge) and gaseous phase
(air from the sparger). Both of these factors will induce movement of the solid, i.e., the packing
material. The reactor will operate in continuous flow under unsterile conditions.
</p>
<img style="width: 35%; height: auto;" src="https://static.igem.wiki/teams/4641/wiki/dbtl-growth-curves/fluidised-bed.png" class="img-responsive rounded mx-auto d-block mt-4">
<p class="sub-stuff">
<u>Packing Material:</u><br><br>
The packing material for the packed and fluidized bed is chemically modified biochar with bacteria
immobilized on it. The team decided to make the biochar into the shape of a hollow cylinder called a
Raschig ring. This type of structure would increase the area of adsorption and improve mass transfer
efficiency. The hollow cylinder pipe-like structure would prevent the problem of choking the reactor due
to larger particles that may be present in the sludge. While cylindrical pellets are more commonly used
and available, we propose the novel idea of a biochar Raschig ring.
</p>
</div>
</div>
</div>
</div>
<p class="MAIN-STUFF"><u>Build:</u></p>
<p class="sub-stuff"><u><i>Reactor</i></u></p>
<ul style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;">
<li>The material of the reactors needs to be non-reactive to the compounds that will be present in the primary
sludge that will enter the reactors. In response to this, we had a few options available to us, those being
mild steel, stainless steel, glass, etc. Since our model is a lab-scale reactor, we chose to use glass to make
the body of the lab-scale reactor. </li>
<li>The inlet, outlet, and recycle pipes will be made of PVC. </li>
<li>The stirrer would have a slow speed of 50 rpm. </li>
<li>We would use generic industrial temperature and pressure gauges for the reactors. </li>
<li>The sparger would be a perforated sparger for uniform aeration and would be placed at the bottom of all the
reactor designs except for the continuous flow fluidized bed. The fluidized bed will have tube sparging with
appropriate tubing to control the airflow for more aeration and, hence, more mass transfer efficiency.</li>
</ul>
<p class="sub-stuff"><u><i>Packing Material</i></u></p>
<ul style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;">
<li>The packing material would consist of biochar. The biochar will be modified with a 1:1 ratio of biochar to
KOH[8]. According to literature, the biochar modified with KOH showed higher adsorption of the target compound
TCC compared to other ratios and just plain biochar.</li>
<li>The biochar would be made into the shape of a Raschig ring using clay as a binding agent. The dimensions of
the raschig ring are in the ratio 1:1 of the diameter to the height, and the inside diameter will be 1cm as
shown in the figure below. These ideas were validated by meetings with Dr. Bhat and Dr. Kevin Sowers. </li>
<li>The Raschig ring would then be fired at 110°C to 130°C to harden the ring so that it does not dissolve in
the primary sludge.</li>
<li>The genetically modified bacteria would then be immobilized on the biochar raschig rings.</li>
<li> The biochar used will be sourced from a local rice mill by processing rice husk that is produced as waste
at the mill. </li>
</ul>
<p class="MAIN-STUFF"><u>Test:</u></p>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h4 class="accordion-header" id="heading16">
<button style="font-family: 'Poppins', sans-serif; font-size: 20px; color: #666;" class="accordion-button"
type="button" data-bs-toggle="collapse" data-bs-target="#collapse16" aria-expanded="true"
aria-controls="collapse12">
<b><i><u>Design 1- Continuous flow packed-bed reactor</u></i></b>
</button>