-
Notifications
You must be signed in to change notification settings - Fork 0
/
Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne.html
2298 lines (2289 loc) · 117 KB
/
Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne.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
<!DOCTYPE html>
<!-- saved from url=(0058)http://www.chemeng.unimelb.edu.au/people/rhd.html#Abdellah -->
<html lang="en" class=" pointerevents"><!-- InstanceBegin template="/Templates/col-8-template.dwt" codeOutsideHTMLIsLocked="false" --><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- InstanceBeginEditable name="doctitle" -->
<title>Research Higher Degree Students: Chemical and Biomolecular Engineering, The University of Melbourne</title>
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" -->
<!-- SEO relevant meta data to describe content of page -->
<meta name="dcterms.title" content="Research Higher Degree Students: Chemical and Biomolecular Engineering, The University of Melbourne">
<meta name="description" content="A list of all current research higher degree students and their thesis titles.">
<meta name="dcterms.description" content="A list of all current research higher degree students and their thesis titles.">
<!-- End SEO relevant meta data -->
<!-- Authoriser and maintainer related meta data - developers, don't forget humans.txt -->
<meta name="dcterms.creator" content="Online Communications Manager, Engineering Marketing">
<meta name="author" content="Online Communications Manager, Engineering Marketing">
<!-- InstanceEndEditable -->
<meta name="UM.Authoriser.Name" content="Sandra Kentish">
<meta name="UM.Authoriser.Title" content="Head of Department">
<meta name="UM.Maintainer.Name" content="Online Communications Manager, Marketing">
<meta name="UM.Maintainer.Department" content="Marketing, Melbourne School of Engineering">
<meta name="UM.Maintainer.Email" content="web[at]eng.unimelb.edu.au">
<!-- End authoriser and maintainer meta data -->
<!-- Static meta data -->
<meta name="dcterms.rights" content="http://www.unimelb.edu.au/disclaimer">
<meta name="dcterms.publisher" content="The University of Melbourne">
<meta name="dcterms.format" content="text/html">
<meta name="dcterms.language" content="en">
<meta name="dcterms.identifier" content="http://www.unimelb.edu.au/">
<!-- End static meta data -->
<!-- Meta data to be autofilled -->
<meta name="dcterms.date" content="">
<meta name="dcterms.modified" content="2016-05-03">
<!-- End meta data to be autofilled -->
<meta content="width=device-width; initial-scale=0.67;" name="viewport">
<!-- GLOBAL RESOURCES -->
<!-- DO NOT CHANGE -->
<link rel="stylesheet" href="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/complete.css">
<script async="" src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/analytics.js"></script><script type="text/javascript" async="" src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/ga.js"></script><script src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/complete.js"></script><style type="text/css"></style>
<script src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/injection.js"></script>
<!-- /GLOBAL RESOURCES -->
<script src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/scripts.js"></script>
<link rel="stylesheet" type="text/css" href="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/ddsmoothmenu.css">
<script type="text/javascript" src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/ddsmoothmenu.js">
/***********************************************
* Smooth Navigational Menu- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
</script>
<script type="text/javascript">
ddsmoothmenu.init({
mainmenuid: "smoothmenu1", //menu DIV id
orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
classname: 'ddsmoothmenu', //class added to menu's outer DIV
//customtheme: ["#1c5a80", "#18374a"],
contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
})
</script>
<link rel="stylesheet" href="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/custom.css" media="screen">
<!-- InstanceBeginEditable name="scripts" -->
<!-- InstanceEndEditable -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-2808341-7', 'unimelb.edu.au');
ga('send', 'pageview');
</script>
<link href="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/style.css" rel="stylesheet" type="text/css"></head>
<body class="no-logo chemical" style="position: relative; top: 60px; background-position: 50% 60px;"> <div id="g-header" role="banner"> <div class="wrapper" style="max-width: 980px; width: auto;"> <ul class="skiplinks"> <li><a href="http://www.chemeng.unimelb.edu.au/people/rhd.html#g-global-menu">Skip to navigation</a></li> <li><a href="http://www.chemeng.unimelb.edu.au/people/rhd.html#g-header-blue-block">Skip to content</a></li> </ul> <ol id="g-breadcrumb-menu"> <li id="g-breadcrumb-home"><a href="http://www.unimelb.edu.au/">University Home</a></li> </ol> <div id="g-global-search"> <a href="http://search.unimelb.edu.au/" id="g-search-button" role="button" aria-haspopup="true">Search</a> <ul id="g-audience-links"> <li><a href="http://campaign.unimelb.edu.au/" class="mobile-hide">Support the Campaign</a></li> <li><a href="http://students.unimelb.edu.au/">Current Students</a></li> <li><a href="http://www.unimelb.edu.au/staff/">Staff</a></li> <li><a href="http://alumni.unimelb.edu.au/" class="mobile-hide">Alumni</a></li> <li><a href="http://library.unimelb.edu.au/">Library</a></li> <li><a href="http://www.unimelb.edu.au/contact/">Contact & Maps</a></li> </ul> <div id="g-global-search-overlay"> <form method="get" action="http://search.unimelb.edu.au/" name="g-searchform" id="g-searchform" role="search"> <label for="q"><span>Search the university</span></label> <input accesskey="s" type="search" name="q" id="q" value="" title="Search the University"> <input type="submit" name="sa" id="g-global-search-submit" value="Search"> </form> </div> </div> <hr> <ol id="g-global-menu" role="navigation" aria-labelledby="g-global-menu-label"> <a id="g-global-menu-logo" href="http://www.unimelb.edu.au/">The University of Melbourne</a> <li id="g-global-menu-label">Browse the University</li> <li><a href="http://coursesearch.unimelb.edu.au/" id="g-global-menu-study">Study</a></li> <li><a href="http://unimelb.edu.au/research/" id="g-global-menu-research">Research</a></li> <li><a href="http://unimelb.edu.au/engage/" id="g-global-menu-community">Engage</a></li> <li><a href="http://about.unimelb.edu.au/" id="g-global-menu-about-us" class="last">About Us</a></li> </ol> <hr class="g-clear-floats"> </div> </div> <div id="g-header-blue-block"></div> <span class="g-clear-floats"></span>
<div class="wrapper">
<div class="header">
<div class="hgroup">
<p><a href="http://www.eng.unimelb.edu.au/">Melbourne School of Engineering</a></p>
<h1><a href="http://www.chemeng.unimelb.edu.au/">Chemical and Biomolecular Engineering</a></h1>
</div>
<!-- InstanceBeginEditable name="headingtext" --><!-- InstanceEndEditable --> </div>
<div id="smoothmenu1" class="ddsmoothmenu">
<ul>
<li style="z-index: 100;"><a href="http://www.chemeng.unimelb.edu.au/about/" style="padding-right: 23px;">About us<img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/down.gif" class="downarrowclass" style="border:0;"></a>
<ul style="display: none; top: 37px; visibility: visible;">
<li><a href="http://www.chemeng.unimelb.edu.au/about/history/">History</a></li>
<li><a href="http://www.chemeng.unimelb.edu.au/about/news.html">News</a></li>
<li><a href="http://www.chemeng.unimelb.edu.au/about/events.html">Events & Seminars</a></li>
<li><a href="http://www.chemeng.unimelb.edu.au/about/contact.html">Contact Us</a></li>
</ul>
</li>
<li><a href="http://www.chemeng.unimelb.edu.au/people/">People</a></li>
<li style="z-index: 99;"><a href="http://www.chemeng.unimelb.edu.au/study/" style="padding-right: 23px;">Study With Us<img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/down.gif" class="downarrowclass" style="border:0;"></a>
<ul style="display: none; top: 37px; visibility: visible;">
<li><a href="http://www.chemeng.unimelb.edu.au/study/">Study With Us</a></li>
<li><a href="http://www.chemeng.unimelb.edu.au/study/top-up/">PhD Top Up Scholarships</a></li>
</ul>
</li>
<li style="z-index: 98;"><a href="http://www.chemeng.unimelb.edu.au/research/" style="padding-right: 23px;">Research<img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/down.gif" class="downarrowclass" style="border:0;"></a>
<ul style="display: none; top: 37px; visibility: visible;">
<li><a href="http://www.chemeng.unimelb.edu.au/research/themes.html">Research Themes</a></li>
<li><a href="http://www.chemeng.unimelb.edu.au/research/centres.html">Centres</a></li>
<li><a href="http://www.chemeng.unimelb.edu.au/research/groups.html">Labs & Groups</a></li>
<li><a href="http://www.chemeng.unimelb.edu.au/research/projects.html">Projects</a></li>
<li><a href="http://www.chemeng.unimelb.edu.au/research/seminars.html">Research Seminars</a></li>
<li><a href="http://www.chemeng.unimelb.edu.au/research/summerprogram.html">Summer Research</a></li>
</ul>
</li>
<li style="z-index: 97;"><a href="http://www.chemeng.unimelb.edu.au/industry/" style="padding-right: 23px;">Industry and Community<img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/down.gif" class="downarrowclass" style="border:0;"></a>
<ul style="display: none; top: 37px; visibility: visible;">
<li><a href="http://www.chemeng.unimelb.edu.au/industry/alumni.html">Alumni</a></li>
<li><a href="http://www.chemeng.unimelb.edu.au/industry/advisory-group.php">Industry Advisory Group</a></li>
<li><a href="http://www.chemeng.unimelb.edu.au/industry/pace.html"><abbr title="Postgraduate Association of Chemical Engineers">PACE</abbr></a></li>
<li><a href="http://www.chemeng.unimelb.edu.au/industry/mucess.html"><abbr title="Melbourne University Chemical Engineering Student Society">MUCESS</abbr></a></li>
</ul>
</li>
<li><a href="http://www.chemeng.unimelb.edu.au/resources/">Instrument Booking</a></li>
<li><a href="http://intranet-eng.unimelb.edu.au/departments/chemical-and-biomolecular-engineering" title="Staff only">Intranet</a></li>
<li><a href="http://www.chemeng.unimelb.edu.au/">Home</a></li>
</ul>
<br style="clear:both">
</div>
<div class="col-8 main main-block" id="main-content" role="main"> <!-- InstanceBeginEditable name="content" -->
<h1>Research Higher Degree Students</h1>
<hr class="visible">
<h2 id="Abdellah">Mohamed Hussein Ali Abdellah</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/mohamed-abdellah.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Solvent resistant nano-filtration for recovery of green solvents</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=14055">Sandra Kentish</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.co2crc.com.au/">CO2CRC</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 8863</p>
<p>E: <script type="text/javascript">sendstudentmail("mabdellah");</script><a href="mailto:mabdellah@student.unimelb.edu.au">mabdellah@student.unimelb.edu.au</a></p>
<p>Room 215, Building 165</p>
</div>
<hr class="visible">
<h2 id="Ali">Mr Suhaib Ali</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/suhaib-ali.jpg" alt=""></div>
<div class="col-2"> </div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=456615">Paul Webley</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/webley/">Clean Energy Laboratory</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 6640</p>
<p>E: <script type="text/javascript">sendstudentmail("s.ali4");</script><a href="mailto:s.ali4@student.unimelb.edu.au">s.ali4@student.unimelb.edu.au</a></p>
<p>Room B.07, C&BE Building 167</p>
</div>
<hr class="visible">
<h2 id="Allison">Stephanie Allison</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/stephanie-allison.jpg" alt=""></div>
<div class="col-2"> </div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=1972">Greg Qiao</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/polymer-science/">Polymer Science</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 8678</p>
<p>E: <script type="text/javascript">sendstudentmail("s.allison");</script><a href="mailto:s.allison@student.unimelb.edu.au">s.allison@student.unimelb.edu.au</a></p>
<p>Room 5.01, Chemistry East Building 154</p>
</div>
<hr class="visible">
<h2 id="Bai">Tianyi (Alisa) Bai</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/tianyi-bai.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Polymer Surfactant Interactions in Emulsions</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=11455">Ray Dagastine</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/dagastine/">Dagastine Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 6640</p>
<p>E: <script type="text/javascript">sendstudentmail("t.bai2");</script><a href="mailto:t.bai2@student.unimelb.edu.au">t.bai2@student.unimelb.edu.au</a></p>
<p>Room B07, Desk 4, C&BE Building 167</p>
</div>
<hr class="visible">
<h2 id="Bhaskaran">Ayana Bhaskaran</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/ayana-bhaskaran.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Design of new artificial active sites</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=18324">Luke Connal</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/connal/">Connal Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>E: <script type="text/javascript">sendstudentmail("abhaskaran");</script><a href="mailto:abhaskaran@student.unimelb.edu.au">abhaskaran@student.unimelb.edu.au</a></p>
<p>Room B07, Desk 8, C&BE Building 167</p>
</div>
<hr class="visible">
<h2 id="Bidram">Ms Elham Bidram</h2>
<div class="col-2 first"><!--<img src="images/elham-bidram.jpg" alt="" />--> </div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>A novel cancer treatment using folate receptor blockage</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=110">David Dunstan</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/complex-fluids/">Complex Fluids</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 4888</p>
<p>E: <script type="text/javascript">sendstudentmail("elhamb");</script><a href="mailto:elhamb@student.unimelb.edu.au">elhamb@student.unimelb.edu.au</a></p>
<p>Room 2.27, C&BE Building 165</p>
</div>
<hr class="visible">
<h2 id="Biscombe">Mr Christian Biscombe</h2>
<div class="col-2 first"><!--<img src="images/christian-biscombe.jpg" alt="" />--> </div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Microfluid circuit analysis</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=25490">Dalton Harvie</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://people.eng.unimelb.edu.au/daltonh/research/">Fluids Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 0352</p>
<p>E: <script type="text/javascript">sendpgradmail("c.biscombe");</script><a href="mailto:c.biscombe@pgrad.unimelb.edu.au">c.biscombe@pgrad.unimelb.edu.au</a></p>
<p>Room 1.05, C&BE Building 165</p>
</div>
<hr class="visible">
<h2 id="Biswas">Mr Dhee Biswas</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/dhee-biswas.jpg" alt=""></div>
<div class="col-2"> </div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=13347">Andrea O’Connor</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/tissue-engineering/">Tissue Engineering</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 4567</p>
<p>E: <script type="text/javascript">sendstudentmail("d.biswas");</script><a href="mailto:d.biswas@student.unimelb.edu.au">d.biswas@student.unimelb.edu.au</a></p>
<p>Room 2.08, C&BE Building 167</p>
</div>
<hr class="visible">
<h2 id="Biviano">Mr Matthew Biviano</h2>
<div class="col-2 first"> </div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Nano-mechanical aspects and particle interactions in micro-encapsulation</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=11455">Ray Dagastine</a><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=13347"></a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/dagastine/">Dagastine Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 6640</p>
<p>E: <script type="text/javascript">sendstudentmail("d.biswas");</script><a href="mailto:d.biswas@student.unimelb.edu.au">d.biswas@student.unimelb.edu.au</a></p>
<p>Room 807, C&BE Building 167 & 165</p>
</div>
<hr class="visible">
<h2 id="Bjornmalm">Mr Mattias Björnmalm </h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/mattias-bjornmalm_180.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Engineering and evaluating drug delivery particles in microfluidic devices</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=16579">Frank Caruso</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/nano/">Nanostructured Interfaces and Materials Science</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 9035 8152</p>
<p>E: <script type="text/javascript">sendstudentmail("abjornmalm");</script><a href="mailto:abjornmalm@student.unimelb.edu.au">abjornmalm@student.unimelb.edu.au</a></p>
<p>Room 1.07, C&BE Building 165</p>
</div>
<hr class="visible">
<h2 id="Bolton">Mr Christopher Bolton</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/christopher-bolton.jpg" alt="" width="180" height="180"></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Controlling dispersion forces to probe diffusive transport properties in confined systems</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=11455">Ray Dagastine</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/dagastine/">Dagastine Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 6635</p>
<p>E: <script type="text/javascript">sendstudentmail("cgbolton");</script><a href="mailto:cgbolton@student.unimelb.edu.au">cgbolton@student.unimelb.edu.au</a></p>
<p>Room 2.07, C&BE Building 165</p>
</div>
<hr class="visible">
<h2 id="Brisson">Ms Emma Brisson</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/emma-brisson.jpg" alt="" width="180" height="180"></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Novel temperature responsive polymers are flocculants and collectors</p>
</div>
<div class="col-2">
<h3>Supervisors</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=18324">Luke Connal</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=25386">George Franks</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/connal/">Connal Group</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/ceramics/">Ceramics and Minerals Processing Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 9035 5670</p>
<p>E: <script type="text/javascript">sendstudentmail("ebrisson");</script><a href="mailto:ebrisson@student.unimelb.edu.au">ebrisson@student.unimelb.edu.au</a></p>
</div>
<hr class="visible">
<h2 id="Browne">Ms Christine Browne</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/christine-browne.jpg" alt=""></div>
<div class="col-2"> </div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=11455">Ray Dagastine</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/dagastine/">Dagastine Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 6635</p>
<p>E: <script type="text/javascript">sendstudentmail("browneci");</script><a href="mailto:browneci@student.unimelb.edu.au">browneci@student.unimelb.edu.au</a></p>
<p>Room 2.07, C&BE Building 165</p>
</div>
<hr class="visible">
<h2 id="Burger">Mr Stephan Burger</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/stephan-burger.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Nanoporous materials for biomedical devices, drug delivery and bioseparations</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=13347">Andrea O’Connor</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/tissue-engineering/">Tissue Engineering</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>E: <script type="text/javascript">sendstudentmail("burgers");</script><a href="mailto:burgers@student.unimelb.edu.au">burgers@student.unimelb.edu.au</a></p>
</div>
<hr class="visible">
<h2 id="WilhelmBurger">Mr Wilhelm Burger</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/wilhelm-burger.jpg" alt=""></div>
<div class="col-2">
<!--<h3>Thesis Title</h3>
<p> </p>--> </div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=277">Sally Gras</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/gras/">Gras Research Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>E: <script type="text/javascript">sendstudentmail("w.burger");</script><a href="mailto:w.burger@student.unimelb.edu.au">w.burger@student.unimelb.edu.au</a></p>
</div>
<hr class="visible">
<h2 id="CChen">Mr Chao Chen</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/chao-chen.jpg" alt=""> </div>
<div class="col-2"> </div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=18324">Luke Connal</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=14055">Sandra Kentish</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/connal/">Connal Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 9572</p>
<p>E: <script type="text/javascript">sendstudentmail("chaoc3");</script><a href="mailto:chaoc3@student.unimelb.edu.au">chaoc3@student.unimelb.edu.au</a></p>
<p>Room 207, C&BE Building 167</p>
</div>
<hr class="visible">
<h2 id="XChen">Ms Xi Chen</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/xi-chen.jpg" alt=""> </div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Morphology and surface control of nanocapsules to guide cellular interaction and processing fate</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=16579">Frank Caruso</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/nano/">Nanostructured Interfaces and Materials Science</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 9035 8152</p>
<p>E: <script type="text/javascript">sendstudentmail("x.chen46");</script><a href="mailto:x.chen46@student.unimelb.edu.au">x.chen46@student.unimelb.edu.au</a></p>
<p>Room 1.08, C&BE Building 165</p>
</div>
<hr class="visible">
<h2 id="Churchill">Jack Churchill</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/jack-churchill.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Remediation of contaminated meltwater in remote climates</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=28494">Kathryn Mumford</a></p>
<h3>Discipline/Group</h3>
<p>Mumford Group</p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 8863</p>
<p>E: <script type="text/javascript">sendstudentmail("j.churchill2");</script><a href="mailto:j.churchill2@student.unimelb.edu.au">j.churchill2@student.unimelb.edu.au</a></p>
<p>Room 215, Building 165</p>
</div>
<hr class="visible">
<h2 id="Collins">Mr Joe Collins</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/joe-collins.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Oxime Chemistry and Dynamic Polymers</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=18324">Luke Connal</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/connal/">Connal Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 9035 8152</p>
<p>E: <script type="text/javascript">sendstudentmail("j.collins7");</script><a href="mailto:j.collins7@student.unimelb.edu.au">j.collins7@student.unimelb.edu.au</a></p>
<p>Room 2.07, C&BE Building 167</p>
</div>
<hr class="visible">
<h2 id="Crust">Mr Adam Crust</h2>
<div class="col-2 first"><!--<img src="images/adam-crust.jpg" alt="" />--> </div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Optimisation of thickener performance through incorporation of shear effects</p>
</div>
<div class="col-2">
<h3>Supervisors</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=12904">Peter Scales</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=5062">Shane Usher</a></p>
<h3>Discipline/Group</h3>
<p>Solid-Liquid Separations Group</p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 9035 8030</p>
<p>E: <script type="text/javascript">sendstudentmail("a.crust");</script><a href="mailto:a.crust@student.unimelb.edu.au">a.crust@student.unimelb.edu.au</a></p>
<p>Room 1.19, C&BE Building 167</p>
</div>
<hr class="visible">
<h2 id="Dai">Ms Qiong Dai </h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/qiong-dai.jpg" alt="" width="180" height="180"></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Intracellular dynamics of nanoengineered materials</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=16579">Frank Caruso</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/nano/">Nanostructured Interfaces and Materials Science</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 9035 8152</p>
<p>E: <script type="text/javascript">sendstudentmail("qiongd");</script><a href="mailto:qiongd@student.unimelb.edu.au">qiongd@student.unimelb.edu.au</a></p>
<p>Room 1.08, C&BE Building 165</p>
</div>
<hr class="visible">
<h2 id="Danaci">Mr David Danaci</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/david-danaci.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Carbon dioxide capture from natural gas: development of adsorbents and accompanying processes</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=456615">Paul Webley</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/webley/">Clean Energy Laboratory</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 9035 8765</p>
<p>E: <script type="text/javascript">sendstudentmail("ddanaci");</script><a href="mailto:ddanaci@student.unimelb.edu.au">ddanaci@student.unimelb.edu.au</a></p>
<p>Room 4.06, Level 4, Bdg 154</p>
</div>
<hr class="visible">
<h2 id="deGodoisBaroni">Mr Erico de Godois Baroni</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/erico-de-godois-baroni.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Evaluating the relative potential of various microalgae as biorefinery feedstocks</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=11339">Greg Martin</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/algal-processing-group/">Algal Processing Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 4888</p>
<p>E: <script type="text/javascript">sendstudentmail("ericod");</script><a href="mailto:ericod@student.unimelb.edu.au">ericod@student.unimelb.edu.au</a></p>
<p>Room 227, Desk 9, C&BE Building 165</p>
</div>
<hr class="visible">
<h2 id="Di">Ms Hongzhan Di</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/hongzhan-di.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Filtration of model colloidal particles</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=110">David Dunstan</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=11339">Greg Martin</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/complex-fluids/">Complex Fluids Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 6618</p>
<p>E: <script type="text/javascript">sendstudentmail("h.di");</script><a href="mailto:h.di@student.unimelb.edu.au">h.di@student.unimelb.edu.au</a></p>
<p>Room 2.24, Building 165</p>
</div>
<hr class="visible">
<h2 id="Dokouhaki">Ms Mina Dokouhaki</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/mina-dokouhaki.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>The assembly of chaplins in bulk solution and at the air-water interface</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=277">Sally Gras</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/gras/">Gras Research Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 2256</p>
<p>E: <script type="text/javascript">sendstudentmail("m.dokouhaki");</script><a href="mailto:m.dokouhaki@student.unimelb.edu.au">m.dokouhaki@student.unimelb.edu.au</a></p>
<p>Room 1.03, Bio21</p>
</div>
<hr class="visible">
<h2 id="Engliman">Ms Nurul Sakinah Engliman</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/nurul-sakinah-engliman.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Application of bacteriophages in reduction of foaming in wastewater treatment processes</p>
</div>
<div class="col-2">
<h3>Supervisors</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=4239">Anthony Stickland</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=277">Sally Gras</a></p>
<h3>Discipline/Group</h3>
<p>Waste Water Foaming Group</p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 2256</p>
<p>E: <script type="text/javascript">sendstudentmail("n.engliman");</script><a href="mailto:n.engliman@student.unimelb.edu.au">n.engliman@student.unimelb.edu.au</a></p>
<p>Bio21</p>
</div>
<hr class="visible">
<h2 id="Faria">Mr Matthew Faria</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/matt-faria_180.jpg" alt=""></div>
<div class="col-2">
<!--<h3>Thesis Title</h3>
<p> </p>--> </div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=16579">Frank Caruso</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/nano/">Nanostructured Interfaces and Materials Science</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 4314</p>
<p>E: <script type="text/javascript">sendstudentmail("mfaria");</script><a href="mailto:mfaria@student.unimelb.edu.au">mfaria@student.unimelb.edu.au</a></p>
<p>Room 1.06, C&BE Building 165</p>
</div>
<hr class="visible">
<h2 id="Fewkes">Mr Christopher Fewkes</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/christopher-fewkes2.jpg" alt=""></div>
<div class="col-2"> </div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=11455">Ray Dagastine</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/dagastine/">Dagastine Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 6635</p>
<p>E: <script type="text/javascript">sendstudentmail("c.fewkes");</script><a href="mailto:c.fewkes@student.unimelb.edu.au">c.fewkes@student.unimelb.edu.au</a></p>
<p>Room 2.07, C&BE Building 165</p>
</div>
<hr class="visible">
<h2 id="Freidman">Mr Benjamin Freidman</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/benjamin-freidman.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Comparison of biofilm activity in natural soild versus synthetic materials: Implications for contaminated land and fuel spill remediation in polar regions</p>
</div>
<div class="col-2">
<h3>Supervisors</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=28494">Kathryn Mumford</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=15076">Geoff Stevens</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=277">Sally Gras</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.pfpc.unimelb.edu.au/">Particulate Fluids Processing Centre</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 0591</p>
<p>E: <script type="text/javascript">sendstudentmail("b.freidman");</script><a href="mailto:b.freidman@student.unimelb.edu.au">b.freidman@student.unimelb.edu.au</a></p>
<p> Room 1.05, C&BE Blg 165</p>
</div>
<hr class="visible">
<h2 id="SGoh">Mr Sook Jin Goh</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/sook-jin-goh.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Development of peptide-inorganic composites as anticancer agents</p>
</div>
<div class="col-2">
<h3>Supervisors</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=1972">Greg Qiao</a></p>
<p>Neil O’Brien-Simpson (MDS)</p>
<p>Anton Blencowe (UniSA)</p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/polymer-science/">Polymer Science</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 3683</p>
<p>E: <script type="text/javascript">sendstudentmail("sookg");</script><a href="mailto:sookg@student.unimelb.edu.au">sookg@student.unimelb.edu.au</a></p>
<p>Room 5.10, Chemistry East</p>
</div>
<hr class="visible">
<h2 id="Gu">Mr Dunyin Gu</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/dunyin-gu.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Development of cryogels for biomedical applications</p>
</div>
<div class="col-2">
<h3>Supervisors</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=13347">Andrea O’Connor</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=1972">Greg Qiao</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/tissue-engineering/">Tissue Engineering</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/polymer-science/">Polymer Science</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 4888</p>
<p>E: <script type="text/javascript">sendstudentmail("dunying");</script><a href="mailto:dunying@student.unimelb.edu.au">dunying@student.unimelb.edu.au</a></p>
<p>Room 5.10, Chemistry East Wing Building 154</p>
</div>
<hr class="visible">
<h2 id="JunLing">Mr Junling Guo</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/junling-guo.jpg" alt=""></div>
<div class="col-2"> </div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=16579">Frank Caruso</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/nano/">Nanostructured Interfaces and Materials Science</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 4314</p>
<p>E: <script type="text/javascript">sendstudentmail("junlingg");</script><a href="mailto:junlingg@student.unimelb.edu.au">junlingg@student.unimelb.edu.au</a></p>
<p>Room 1.07, C&BE Building 165</p>
</div>
<hr class="visible">
<h2 id="Haribabu">Ms Malavika Haribabu</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/malavika-haribabu.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>A fundamental study of milk ultrafiltration</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=25490">Dalton Harvie</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 6640</p>
<p>E: <script type="text/javascript">sendstudentmail("m.haribabu");</script><a href="mailto:m.haribabu@student.unimelb.edu.au">m.haribabu@student.unimelb.edu.au</a></p>
<p>Room B.07, C&BE building 167</p>
</div>
<hr class="visible">
<h2 id="Hartnett">Mr Terence Hartnett</h2>
<div class="col-2 first"><!--<img src="images/terence-hartnett.jpg" alt="" />--> </div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Ocular therapeutic drug delivery for Ophthalmic disorders of the posterior segment of the eye</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=13347">Andrea O’Connor</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/tissue-engineering/">Tissue Engineering</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 4706</p>
<p>E: <script type="text/javascript">sendstudentmail("t.hartnett");</script><a href="mailto:t.hartnett@student.unimelb.edu.au">t.hartnett@student.unimelb.edu.au</a></p>
<p>Room 2.09, C&BE Building 167</p>
</div>
<hr class="visible">
<h2 id="Hassanvand">Ms Armineh Hassanvand</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/armineh-hassanvand.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Capacative Deionisation as a Novel Approach to Wastewater Treatment</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=14055">Sandra Kentish</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=456615">Paul Webley</a></p>
<h3>Discipline/Group</h3>
<p>Kentish Group</p>
<p><a href="http://www.chemeng.unimelb.edu.au/webley/">Clean Energy Laboratory</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>E: <script type="text/javascript">sendstudentmail("a.hassanvand");</script><a href="mailto:a.hassanvand@student.unimelb.edu.au">a.hassanvand@student.unimelb.edu.au</a></p>
<p>Room 2.15, C&BE Building 165</p>
</div>
<hr class="visible">
<h2 id="He">Mr Yingdian (Frank) He</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/yingdian-he.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Metal-organic framework materials for gas separation</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=456615">Paul Webley</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/webley/">Clean Energy Laboratory</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 9035 8765</p>
<p>E: <script type="text/javascript">sendstudentmail("frhe");</script><a href="mailto:frhe@student.unimelb.edu.au">frhe@student.unimelb.edu.au</a></p>
<p>Room 4.06, Level 4, Bdg 154</p>
<p><a href="http://unimelb.academia.edu/YingdianHe">View online profile</a></p>
</div>
<hr class="visible">
<h2 id="Henderson">Mr Tim Henderson</h2>
<div class="col-2 first"><!--<img src="images/tim-henderson.jpg" alt="" />--> </div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Tunable macro-porous hydrogels for cell culture and tissue engineering</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=13347">Andrea O’Connor</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/tissue-engineering/">Tissue Engineering</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 4706</p>
<p>E: <script type="text/javascript">sendstudentmail("t.henderson3");</script><a href="mailto:t.henderson3@student.unimelb.edu.au">t.henderson3@student.unimelb.edu.au</a></p>
<p>Room 2.09, C&BE Building 167</p>
</div>
<hr class="visible">
<h2 id="Hoefgen">Mr Eric Hoefgen</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/eric-hoefgen" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Combining shear and filtration: A new perspective on dewatering</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=4239">Anthony Stickland</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=12904">Peter Scales</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=118440">Robin Batterham</a></p>
<h3>Discipline/Group</h3>
<p>The Sludge Group</p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 9035 5670</p>
<p>E: <script type="text/javascript">sendstudentmail("e.hofgen");</script><a href="mailto:e.hofgen@student.unimelb.edu.au">e.hofgen@student.unimelb.edu.au</a></p>
<p>Room 1.08 (Desk 4), C&BE Building 167</p>
</div>
<hr class="visible">
<h2 id="Homer">Mr Stephen Homer</h2>
<div class="col-2 first"><!--<img src="images/stephen-homer.jpg" alt="" />--> </div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Hierarchical structure function relationships in mined biopolymer systems</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=110">David Dunstan</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/complex-fluids/">Complex Fluids</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>E: <script type="text/javascript">sendstudentmail("s.homer");</script><a href="mailto:s.homer@student.unimelb.edu.au">s.homer@student.unimelb.edu.au</a></p>
</div>
<hr class="visible">
<h2 id="Hsu">Mr Wei-Lun Hsu</h2>
<div class="col-2 first"><!--<img src="images/wei-lun-hsu.jpg" alt="" />--> </div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Simulating microfluidic electrokinetic flows</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=25490">Dalton Harvie</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://people.eng.unimelb.edu.au/daltonh/research/">Fluids Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 0591</p>
<p>E: <script type="text/javascript">sendstudentmail("w.hsu");</script><a href="mailto:w.hsu@student.unimelb.edu.au">w.hsu@student.unimelb.edu.au</a></p>
<p>Room 1.05, C&BE Building 165</p>
</div>
<hr class="visible">
<h2 id="Hu">Mr Guoping Hu</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/guoping-hu.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Novel promoters for carbon dioxide absorption in potassium carbonate solutions</p>
</div>
<div class="col-2">
<h3>Supervisors</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=15076">Geoff Stevens</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=14055">Sandra Kentish</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.co2crc.com.au/">CO2CRC</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 8863</p>
<p>E: <script type="text/javascript">sendstudentmail("guopingh");</script><a href="mailto:guopingh@student.unimelb.edu.au">guopingh@student.unimelb.edu.au</a></p>
<p>Room 2.15, C&BE Building 165</p>
</div>
<hr class="visible">
<h2 id="Huang">Mr Tao Huang</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/tao-huang.jpg" alt="" width="180" height="180"></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Biomaterials fabrication for tissue engineering</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=13347">Andrea O’Connor</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=664526">Daniel Heath</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/tissue-engineering/">Tissue Engineering</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>E: <script type="text/javascript">sendstudentmail("thuang2");</script><a href="mailto:thuang2@student.unimelb.edu.au">thuang2@student.unimelb.edu.au</a></p>
<p>Room 208, C&BE Building 167</p>
</div>
<hr class="visible">
<h2 id="Jafari">Mr Javad Jafari</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/javad-jafari.jpg" alt="" width="180" height="180"></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Biomaterials for soft tissue engineering</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=13347">Andrea O’Connor</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/tissue-engineering/">Tissue Engineering</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 9035 8081</p>
<p>E: <script type="text/javascript">sendstudentmail("j.jafari");</script><a href="mailto:j.jafari@student.unimelb.edu.au">j.jafari@student.unimelb.edu.au</a></p>
<p>Room 2.5, C&BE Building 167</p>
</div>
<hr class="visible">
<h2 id="Ju">Mr Yi Ju </h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/yi-ju.jpg" alt="" width="180" height="180"></div>
<div class="col-2"> </div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=16579">Frank Caruso</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/nano/">Nanostructured Interfaces and Materials Science </a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 4314</p>
<p>E: <script type="text/javascript">sendstudentmail("juy");</script><a href="mailto:juy@student.unimelb.edu.au">juy@student.unimelb.edu.au</a></p>
<p>Room 1.07, C&BE Building 165</p>
</div>
<hr class="visible">
<h2 id="Junejo">Inam Junejo</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/inam-junejo2.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Multifunctional Gold Shell Polymeric Particles for Biomedical Applications</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=1972">Greg Qiao</a></p>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=294102">Paul Gurr</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/polymer-science/">Polymer Science</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 8678</p>
<p>E: <script type="text/javascript">sendstudentmail("i.junejo");</script><a href="mailto:i.junejo@student.unimelb.edu.au">i.junejo@student.unimelb.edu.au</a></p>
<p>Room 5.10, C&BE Building 167</p>
</div>
<hr class="visible">
<h2 id="Kalani">Ms Mahshid Kalani</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/mahshid-kalani.jpeg" alt=""> </div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Peptide based materials and the assembly of peptide based nanostructures</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=277">Sally Gras</a></p>
<h3>Discipline/Group</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/gras/">Gras Research Group</a></p>
</div>
<div class="col-2">
<h3>Contact</h3>
<p>T: 8344 2256</p>
<p>E: <script type="text/javascript">sendstudentmail("m.kalani");</script><a href="mailto:m.kalani@student.unimelb.edu.au">m.kalani@student.unimelb.edu.au</a></p>
<p>Room 1.03, Bio 21</p>
</div>
<hr class="visible">
<h2 id="Karimi">Ms Fatemeh Karimi</h2>
<div class="col-2 first"><img src="./Research Higher Degree Students_ Chemical and Biomolecular Engineering, The University of Melbourne_files/fatemeh-karimi.jpg" alt=""></div>
<div class="col-2">
<h3>Thesis Title</h3>
<p>Multi-scale design of cardiovascular biomaterials</p>
</div>
<div class="col-2">
<h3>Supervisor</h3>
<p><a href="http://www.chemeng.unimelb.edu.au/people/staff.php?person_ID=664526">Daniel Heath</a></p>
<h3>Discipline/Group</h3>
<p>Heath Group</p>
</div>
<div class="col-2">
<h3>Contact</h3>