-
Notifications
You must be signed in to change notification settings - Fork 0
/
paper1.html
1605 lines (1446 loc) · 74.8 KB
/
paper1.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>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="author" content="PSG iTech" />
<meta name="description" content="Yukta:,the national level inter-collegiate fest for those who want ot express the talents of different."/>
<meta name="keywords" content="yuktaha,Yukta:,Yuktaha,"/>
<meta name="application-name" content="Yuktaha" />
<title>YUKTAHA 2K17</title>
<!-- Google fonts -->
<link href='assets/1.css' rel='stylesheet' type='text/css'>
<!-- font awesome -->
<link href="boot.css" rel="stylesheet">
<!-- bootstrap -->
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css" />
<!-- animate.css -->
<link rel="stylesheet" href="assets/animate/animate.css" />
<link rel="stylesheet" href="assets/animate/set.css" />
<link rel="stylesheet" href="loader/normalize.min.css">
<link rel="stylesheet" href="loader/css/style.css">
<!-- gallery -->
<link rel="stylesheet" href="assets/gallery/blueimp-gallery.min.css">
<!-- Favicon -->
<link rel="shortcut icon" href="favicon.png" type="image/png">
<link rel="stylesheet" href="assets/style.css">
<script>
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}
</script>
<link rel="stylesheet" href="assets/style.css">
<style>
body {
font-family: "Lato", sans-serif;
}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s
}
.sidenav a:hover, .offcanvas a:focus{
color: #f1f1f1;
}
.sidenav .closebtn {
position: relative;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
</style>
<link rel='stylesheet prefetch' href='assets/2.css'>
<link rel="stylesheet" href="login/style.css">
</head>
<body>
<div id="loader-wrapper">
<div id="loader"></div>
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
</div>
<div class="topbar animated fadeInLeftBig"></div>
<!-- Header Starts -->
<div class="navbar-wrapper">
<div class="container">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation" id="top-nav">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" onclick="location.href='logout.php';" style="color:white">
LOGOUT
</button>
<br><br>
<span style="font-size:30px;cursor:pointer;color:white;padding-left:10%" onclick="openNav()">☰</span>
</div>
<!-- Nav Starts -->
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right scroll">
<li ><a href="#" style="color:#ff9999">PAPER PRESENTATION</a></li>
<li ><button type="button" onclick="location.href='logout.php';" class="" style="color:#ff9999;margin-top:2.28em;background :none;border : none;padding-left:1em; " autocomplete="off">LOGOUT</button></li>
</ul>
</div>
<!-- #Nav Ends -->
</div>
</div>
</div>
</div>
<!-- #Header Starts -->
<div id="mySidenav" class="sidenav" >
<br><br><br>
<b style="padding-left:25%;font-size:170%;color:white;">YUKTA:'17</b>
<br><br><br>
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()" style="padding-left:70%">×</a>
<h4 style="font:Calibri"><a href="index.html">Home</a>
<a href="event1.html">Events</a>
<a href="workshop1.html">Workshop</a>
<a href="paper1.html">Paper presentation</a>
</h4>
</div>
<h3></h3>
<div id="ece" class=" clearfix grid">
<h3></h3><h3></h3><h3></h3>
<h2 align=center style="color:#fff0e6">PAPER PRESENTATION</h2>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/csepaper.jpg" alt="img01"/>
<figcaption>
<h2>Innovia</h2>
<p><br> Time: 9AM-12PM<br>Venue:CSE Seminar hall<br>
<u><a data-toggle="modal" data-target="#myModalinnovia">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/energeia 1.jpg" alt="img01"/>
<figcaption><br><br><br><br><br>
<h2>Energeia</h2>
<p><br> Time: 10AM-12PM<br>Venue:E3-304<br>
<u><a data-toggle="modal" data-target="#myModalenergeia">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/mechpaper.jpg" alt="img01"/>
<figcaption>
<h2>Mechanidea</h2>
<p><br> Time:1PM-4:30PM<br>Venue:E6-203<br>
<u><a data-toggle="modal" data-target="#myModalmech">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/civilpaper.jpg" alt="img01"/>
<figcaption><br><br><br><br><br>
<h2>Tech vibes</h2>
<p><br> Time: 10AM-1PM<br>Venue:E1-307<br>
<u><a data-toggle="modal" data-target="#myModaltechvibes">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/technotalk.jpg" alt="img01"/>
<figcaption>
<h2>Technotalk</h2>
<p><br> Time: 9:30AM-1PM<br>Venue:E2-208<br>
<u><a data-toggle="modal" data-target="#myModalece">View more</p> </a> </u>
</figcaption>
</figure>
</div>
</div>
<!--FOOTER-->
<div class="footer text-center spacer" >
<p class="wowload flipInX">
<a href="www.facebook.com/yuktaha"><img src="images/portfolio/FB.png"/></a>
<a href="www.twitter.com/yuktaha2K17"><img src="images/portfolio/twitter.png"/></a>
<a href="www.instagram.com/yuktaha"><img src="images/portfolio/isnta.png"/></a>
<br> <b>© 2017 Yuktaha. All rights reserved.</b>
</div>
<!--MODAL-->
<div id="myModalinnovia" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Innovia</h4>
</div>
<div class="modal-body">
<p> <b><b>“There is not a lot of forms where you can control your presentations and your ideas”</b></b><br>Courage is what it takes to stand up and speak and
to sit down and listen. So here we provide you a
platform to express your thoughts and to develop your
own technical skills. Come and excel in both
presenting and technical skills.</p>
<br><p><b><b>DOMAIN</b></b><br>
Your topic can be any of the below specified ones or any other topics regarding Computer Science and Information Technology are invited.<br>
• IOT<br>
• Cloud Computing<br>
• Grid Computing<br>
• Distributed systems<br>
• Data mining and warehousing<br>
• Artificial Intelligence<br>
• Blue Brain<br>
• 5g<br>
</p>
<p><b><b>RULES</b></b><br>
• The paper should be submitted in IEEE Format<br>
• Each team may have maximum of 3 members<br>
• The name of the file should be the title of the paper<br>
• Selected team will be intimated through mail<br>
• Selected team should carry both the soft copy and the hard copy of the paper.<br>
• Selected teams must present their paper in MS Powerpoint<br>
• Presentation should not be more than 10 mins including the query session.(7 mins presentation + 3 mins of query session)<br>
• Judges decision is final<br>
• The intimation of the selected abstracts will be sent on 15th February<br>
• Your paper should be of minimum 3 and maximum of 5 pages<br>
</p>
<p><b>The paper should be submitted on or before
13.02.2017 (before 11.50 pm)
</p></b><br>
<p> <b><b>CONTACT DETAILS</b></b><br>
Shwetha : 9894698874<br>
Sundhar : 7305325280
</p>
<br>
<p>MAIL THE PAPER TO : vision.cse@psgitech.ac.in</p>
<button type="button" class="btn btn-default btn-block" onclick="regi()">Register</button>
</div>
</div>
</div>
</div>
<div id="myModalenergeia" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Energeia</h4>
</div>
<div class="modal-body">
<p><b><b>“ENERGEIA” event provides an ideal platform for the thinkers of this generation. For those who wish to voice their innovative ideas in an effective manner, we provide an opportunity to network, compete and grow with the best.
</b></b></p>
<p><b><b>DOMAIN</b></b><br>
The presentation of paper is invited in the following areas<br>
• Bio-energy<br>
• Smart grid<br>
• Carbon capture and storage<br>
• Smart meters<br>
• Micro grid<br>
• Smart and sustainable cities<br>
• Solar (photo voltaic)<br></p>
<p><b><b>RULES</b></b><br>
• The number of participants in a team is 2<br>
• Please bring your PowerPoint presentation on a pen drive (or CD) on the day of the event<br>
• Please bring 2 hardcopies of the submitted paper on the day of event<br>
• Each team will get 10 minutes for the presentation followed by question and answer session<br>
• Last date to submit your soft copy of abstract is 13th February 2017.If you are shortlisted, you will be notified on 14th Feb.<br>
• Please include your name, e-mail id and mobile number in the abstract<br>
• Your paper should be in .docx format<br>
• Please mail your abstract, and presentation to the mail id given below.The decision of the judges is final</p>
<p><b><b>CONTACT DETAILS</b></b><br>
Avinash K : 8667732692<br>
Ajit M : 9786933340
<br></p>
<p>MAIL THE PAPER TO : vision.eee@psgitech.ac.in</P>
<button type="button" class="btn btn-default btn-block" onclick="regi()">Register</button>
</div>
</div>
</div>
</div>
<div id="myModalmech" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Mechanidea</h4>
</div>
<div class="modal-body">
<br><b><b>MAKE ANY IDEA !!!</b></b></br>
<br><p>“ YOU CAN HAVE BRILLIANT IDEAS, BUT IF YOU CAN’T GET THEM ACROSS, YOUR IDEAS WON’T GET YOU ANYWHERE”. </P><p>Presentation is the way of showing our ideas to the audience. We are here to give you a vibrant platform to showcase your abilities to put forward your views.</p>
<p><b><b>DOMAIN</b></b><br>
The presentation of paper is invited in the following areas<br>
• Micro grid<br>
• Advanced Manufacturing<br>
• System, Design and Complexity<br>
• Heat transfer and thermal engineering<br>
• Biomechanical engineering<br>
• Green energy and energy conservation<br>
• Farm Equipment design and development<br></p>
<p><b><b>RULES</b></b><br>
• Team can consist of 2 members<br>
• Team must send their abstract before 13-02-2017<br>
• The paper should be in IEEE format<br>
• The attachment should in PDF format<br>
• The name of the file should be title of the paper<br>
• Selected team will be intimated through e-mail on or before 15-02-2017<br>
• Selected team should bring hard copy and soft copy of the PPT to be presented<br>
• Details of the team members must be sent along with the abstract</p>
<p><b><b>CONTACT DETAILS</b></b><br>
Sabarinath : 8870251675<br>
Balakumar : 9791468887<br>
Abubucker : 8610256307<br>
Sacchin : 8754902424<br>
</p>
<p>MAIL THE PAPER TO : vision.mech@psgitech.ac.in</P>
<button type="button" class="btn btn-default btn-block" onclick="regi()">Register</button>
</div>
</div>
</div>
</div>
<div id="myModaltechvibes" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Tech vibes</h4>
</div>
<div class="modal-body">
<p><b> <b>Are you a magnanimous presenter? Then give this a try.</b></b></p>
<p><br><b><b>DOMAIN</b></b><br>
Engage yourself into this dynamic platform to showcase your talent in presenting a technical concept, in the following cases<br>
• Waste Management in Civil Engineering<br>
• Smart city<br>
• Geo Synthetics<br>
• Earthquake Resistant Structures<br>
• Modern Construction Materials and Techniques<br></p>
<p><b><b>RULES</b></b><br>
• Each team must have 2 members<br>
• Selected team must carry hardcopy and softcopy of their respective papers<br>
• Selected papers must be presented in MS Power Point<br>
• Duration of presentation must be within 10 minutes, exclusive of the Q/A session between presenters and judges<br>
• Participants should send their Abstract on or before 13th February<br>
• The intimation of the selected abstracts will be sent on 15th February<br>
• Abstract should be in PDF format<br>
</p>
<p>
<p><b><b>CONTACT DETAILS</b></b><br>
Muhsina Parveen M : 9487534733<br>
Shangesh K A : 9578749449
<br></p>
<p>MAIL THE PAPER TO : vision.civil@psgitech.ac.in</P>
<button type="button" class="btn btn-default btn-block"onclick="regi()">Register</button>
</div>
</div>
</div>
</div>
<div id="myModalece" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Technotalk</h4>
</div>
<div class="modal-body">
<p><b><b>Want to experience new mode of communication??!!
For those who wish to voice their innovative ideas, we provide an opportunity to present in an ideal platform. Come, the hearts of the people with your innovative presentation.
</p></b></b>
<p><b><b>DOAMIN</b></b><br>
The presentation topic can be in one of the following domains but not limited to<br>
• VLSI<br>
• Embedded systems<br>
• Signal processing<br>
• Medical Electronics<br>
• Communication systems<br>
• MEMS/NEMS<br>
• IoT<br>
<br></p>
<p><b><b>RULES</b></b><br>
• Individual participation or two per team<br>
• Participants should make a power point presentation on their topics<br>
• Hard copy of the paper is also mandatory<br>
• Abstract should be in IEEE format<br>
• Participants should send their Abstract on or before 13th February<br>
• The intimation of the selected abstracts will be sent on 15th February<br>
• Each Presentation msut be within 10 minutes<br>
• The participants would be questioned based on their topics<br>
• Participants must bring their college ID's<br>
• Participants should be present at the venue half an hour prior to the start of the event<br>
<br>
</p>
<p>
<p><b><b>CONTACT DETAILS</b></b><br>
Geethanjali S : 9524157677<br>
Ajay Sankaran : 8015618830<br>
Jeyashree G : 9442056465<br>
</p>
<p>MAIL THE PAPER TO : vision.ece@psgitech.ac.in</P>
<button type="button" class="btn btn-default btn-block" onclick="regi()">Register</button>
</div>
</div>
</div>
</div>
<div id="myModalinnovia" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Innovia</h4>
</div>
<div class="modal-body">
<p> <b>“There is not a lot of forms where you can control your presentations and your ideas”</b><br>Courage is what it takes to stand up and speak and
to sit down and listen. So here we provide you a
platform to express your thoughts and to develop your
own technical skills. Come and excel in both
presenting and technical skills.</p>
<br><p><b>DOMAIN</b><br>
Your topic can be any of the below specified ones or any other topics regarding Computer Science and Information Technology are invited.<br>
• IOT<br>
• Cloud Computing<br>
• Grid Computing<br>
• Distributed systems<br>
• Data mining and warehousing<br>
• Artificial Intelligence<br>
• Blue Brain<br>
• 5g<br>
</p>
<p><b>RULES</b><br>
• The paper should be submitted in IEEE Format<br>
• Each team may have maximum of 3 members<br>
• The name of the file should be the title of the paper<br>
• Selected team will be intimated through mail<br>
• Selected team should carry both the soft copy and the hard copy of the paper.<br>
• Selected teams must present their paper in MS Powerpoint<br>
• Presentation should not be more than 10 mins including the query session.(7 mins presentation + 3 mins of query session)<br>
• Judges decision is final<br>
• The intimation of the selected abstracts will be sent on 15th February<br>
• Your paper should be of minimum 3 and maximum of 5 pages<br>
</p>
<p><b>The paper should be submitted on or before
13.02.2017 (before 11.50 pm)
</p></b><br>
<script type="text/javascript">
function p1() {
var javascriptVariable = "innovia";
window.location= "eventr.php?name=" + javascriptVariable;
}
</script>
<p> <b>CONTACT DETAILS</b><br>
Shwetha : 9894698874<br>
Sundhar : 7305325280
</p>
<br>
<p>MAIL THE PAPER TO : vision.cse@psgitech.ac.in</p>
<button type="button" class="btn btn-default btn-block" onclick="p1()">Register</button>
</div>
</div>
</div>
</div>
<div id="myModalenergeia" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Energeia</h4>
</div>
<div class="modal-body">
<p><b>“ENERGEIA” event provides an ideal platform for the thinkers of this generation. For those who wish to voice their innovative ideas in an effective manner, we provide an opportunity to network, compete and grow with the best.
</b></p>
<p><b>DOMAIN</b><br>
The presentation of paper is invited in the following areas<br>
• Bio-energy<br>
• Smart grid<br>
• Carbon capture and storage<br>
• Smart meters<br>
• Micro grid<br>
• Smart and sustainable cities<br>
• Solar (photo voltaic)<br></p>
<p><b>RULES</b><br>
• The number of participants in a team is 2<br>
• Please bring your PowerPoint presentation on a pen drive (or CD) on the day of the event<br>
• Please bring 2 hardcopies of the submitted paper on the day of event<br>
• Each team will get 10 minutes for the presentation followed by question and answer session<br>
• Last date to submit your soft copy of abstract is 13th February 2017.If you are shortlisted, you will be notified on 14th Feb.<br>
• Please include your name, e-mail id and mobile number in the abstract<br>
• Your paper should be in .docx format<br>
• Please mail your abstract, and presentation to the mail id given below.The decision of the judges is final</p>
<script type="text/javascript">
function pppp() {
var javascriptVariable = "energeia";
window.location= "eventr.php?name=" + javascriptVariable;
}
</script>
<p><b>CONTACT DETAILS</b><br>
Avinash K : 8667732692<br>
Ajit M : 9786933340
<br></p>
<p>MAIL THE PAPER TO : vision.eee@psgitech.ac.in</P>
<button type="button" class="btn btn-default btn-block" onclick="pppp()">Register</button>
</div>
</div>
</div>
</div>
<div id="myModalmech" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Mechanidea</h4>
</div>
<div class="modal-body">
<br><b>MAKE ANY IDEA !!!</b></br>
<br><p>“ YOU CAN HAVE BRILLIANT IDEAS, BUT IF YOU CAN’T GET THEM ACROSS, YOUR IDEAS WON’T GET YOU ANYWHERE”. </P><p>Presentation is the way of showing our ideas to the audience. We are here to give you a vibrant platform to showcase your abilities to put forward your views.</p>
<p><b>DOMAIN</b><br>
The presentation of paper is invited in the following areas<br>
• Micro grid<br>
• Advanced Manufacturing<br>
• System, Design and Complexity<br>
• Heat transfer and thermal engineering<br>
• Biomechanical engineering<br>
• Green energy and energy conservation<br>
• Farm Equipment design and development<br></p>
<p><b>RULES</b><br>
• Team can consist of 2 members<br>
• Team must send their abstract before 13-02-2017<br>
• The paper should be in IEEE format<br>
• The attachment should in PDF format<br>
• The name of the file should be title of the paper<br>
• Selected team will be intimated through e-mail on or before 15-02-2017<br>
• Selected team should bring hard copy and soft copy of the PPT to be presented<br>
• Details of the team members must be sent along with the abstract</p>
<script type="text/javascript">
function p3() {
var javascriptVariable = "mechanider";
window.location= "eventr.php?name=" + javascriptVariable;
}
</script>
<p><b>CONTACT DETAILS</b><br>
Sabarinath : 8870251675<br>
Balakumar : 9791468887<br>
Abubucker : 8610256307<br>
Sacchin : 8754902424<br>
</p>
<p>MAIL THE PAPER TO : vision.mech@psgitech.ac.in</P>
<button type="button" class="btn btn-default btn-block" onclick="p3()">Register</button>
</div>
</div>
</div>
</div>
<div id="myModaltechvibes" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Tech vibes</h4>
</div>
<div class="modal-body">
<p><b> Are you a magnanimous presenter? Then give this a try.</b></p>
<p><br><b>DOMAIN</b><br>
Engage yourself into this dynamic platform to showcase your talent in presenting a technical concept, in the following cases<br>
• Waste Management in Civil Engineering<br>
• Smart city<br>
• Geo Synthetics<br>
• Earthquake Resistant Structures<br>
• Modern Construction Materials and Techniques<br></p>
<p><b>RULES</b><br>
• Each team must have 2 members<br>
• Selected team must carry hardcopy and softcopy of their respective papers<br>
• Selected papers must be presented in MS Power Point<br>
• Duration of presentation must be within 10 minutes, exclusive of the Q/A session between presenters and judges<br>
• Participants should send their Abstract on or before 13th February<br>
• The intimation of the selected abstracts will be sent on 15th February<br>
• Abstract should be in PDF format<br>
</p>
<p>
<script type="text/javascript">
function p4() {
var javascriptVariable = "techvibes";
window.location= "eventr.php?name=" + javascriptVariable;
}
</script>
<p><b>CONTACT DETAILS</b><br>
Muhsina Parveen M : 9487534733<br>
Shangesh K A : 9578749449
<br></p>
<p>MAIL THE PAPER TO : vision.civil@psgitech.ac.in</P>
<button type="button" class="btn btn-default btn-block" onclick="p4()">Register</button>
</div>
</div>
</div>
</div>
<div id="myModalece" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Technotalk</h4>
</div>
<div class="modal-body">
<p><b>Want to experience new mode of communication??!!
For those who wish to voice their innovative ideas, we provide an opportunity to present in an ideal platform. Come, the hearts of the people with your innovative presentation.
</p></b>
<p><b>DOMAIN</b><br>
The presentation topic can be in one of the following domains but not limited to<br>
• VLSI<br>
• Embedded systems<br>
• Signal processing<br>
• Medical Electronics<br>
• Communication systems<br>
• MEMS/NEMS<br>
• IoT<br>
<br></p>
<p><b>RULES</b><br>
• Individual participation or two per team<br>
• Participants should make a power point presentation on their topics<br>
• Hard copy of the paper is also mandatory<br>
• Abstract should be in IEEE format<br>
• Participants should send their Abstract on or before 13th February<br>
• The intimation of the selected abstracts will be sent on 15th February<br>
• Each Presentation msut be within 10 minutes<br>
• The participants would be questioned based on their topics<br>
• Participants must bring their college ID's<br>
• Participants should be present at the venue half an hour prior to the start of the event<br>
<br>
</p>
<p>
<script type="text/javascript">
function p5() {
var javascriptVariable = "technotalk";
window.location= "eventr.php?name=" + javascriptVariable;
}
</script>
<p><b>CONTACT DETAILS</b><br>
Geethanjali S : 9524157677<br>
Ajay Sankaran : 8015618830<br>
Jeyashree J : 9442056465<br>
</p>
<p>MAIL THE PAPER TO : vision.ece@psgitech.ac.in</P>
<button type="button" class="btn btn-default btn-block" onclick="p5()">Register</button>
</div>
</div>
</div>
</div>
<div id="register" class="modal fade" role="dialog">
<div class="modal-dialog" style="width:520px; max-height:100%; max-width:100%;">
<!-- Modal content-->
<div class="modal-content">
<div class="login-wrap">
<div class="login-html">
<input id="tab-1" type="radio" name="tab" class="sign-in" checked><label for="tab-1" class="tab" style="font-size:100%">Sign In</label>
<input id="tab-2" type="radio" name="tab" class="sign-up"><label for="tab-2" class="tab" style="font-size:100%">Sign Up</label>
<div class="login-form">
<div class="sign-in-htm">
<form class="group" action="login.php" method="post">
<div class="group">
<label for="user" class="label">EMAIL ADDRESS</label>
<input id="email" name="email" required="required" type="text" class="input" placeholder="Enter your Email-id">
</div>
<div class="group">
<label for="pass" class="label">PASSWORD</label>
<input id="password" name="password" required="required" type="password" class="input" data-type="password" placeholder="Enter your password">
</div>
<div class="group">
<input id="check" type="checkbox" class="check" checked>
<label for="check"><span class="icon"></span> Keep me Signed in</label>
</div>
<div class="group">
<input type="submit" name="login" class="button" value="Sign In">
</div>
<div class="hr"></div>
</div>
</form>
<form class="sign-up-htm" action="register.php" autocomplete="on" method="post" enctype="multipart/form-data">
<div class="sign-up-htm">
<div class="group">
<label for="user" class="label">NAME</label>
<input id="username" name="username" required="required" type="text" class="input" placeholder="Enter your name">
</div>
<div class="group">
<label for="pass" class="label">EMAIL ADDRESS</label>
<input id="email" name="email" required="required" class="input" data-type="password" placeholder="Enter your Email-id">
</div>
<div class="group">
<label for="pass" class="label">PASSWORD</label>
<input id="password" name="password" required="required" type="password" class="input" data-type="password" placeholder="Enter your password">
</div>
<div class="group">
<label for="pass" class="label">COLLEGE</label>
<style>
#college option{
background-color: black;
color: white;
}
</style>
<select class="input" data-live-search="true" id="college" name="college" required>
<option value="" selected="selected">select your college</option>
<option value="4">Aalim Muhammed Salegh College Of Engineering</option>
<option value="5">Aarupadai Veedu Institute of Technology, Vinayaka Mission University</option>
<option value="6">ABES Engineering College , Ghaziabad</option>
<option value="7">ABV-IIITM, Gwalior</option>
<option value="8">ACCET Karaikudi</option>
<option value="2">A.C. College of Engineering and Technology</option>
<option value="9">Acharaya Nagarjuna University</option>
<option value="10">Achariya Bala Siksha Mandir</option>
<option value="11">Achariya College of Engineering and Technology</option>
<option value="12">Acropolois Technical Campus</option>
<option value="13">ACT Anna University</option>
<option value="14">Adhiyamaan College of Engineering, Hosur</option>
<option value="15">Adithya Institute of Technology</option>
<option value="16">Agni College Of Technology</option>
<option value="17">Alagappa Chettiar College of Engineering and Technology, Karaikudi</option>
<option value="18">Al-Ameen Engineering College</option>
<option value="19">Al-Ameer College of Engineering and IT</option>
<option value="20">Alpha College of Engineering</option>
<option value="21">Alpha College of Engineering and Technology</option>
<option value="22">Amara Institute of Engineering and Technology</option>
<option value="23">American College</option>
<option value="24">AMET University</option>
<option value="25">Amity Institute of Space Science and Technology</option>
<option value="26">Amrita Vishwa Vidyapeetham, Amritapuri</option>
<option value="27">Amrita Vishwa Vidyapeetham, Bengaluru</option>
<option value="28">Amrita Vishwa Vidyapeetham, Coimbatore</option>
<option value="29">Amrita Vishwa Vidyapeetham, Kochi</option>
<option value="30">Amrita Vishwa Vidyapeetham, Mysore</option>
<option value="3">A.M.S College of Engineering</option>
<option value="31">AMS College of Engineering</option>
<option value="32">Anand Institute of Higher Technology</option>
<option value="33">Andhra University</option>
<option value="34">Angel College of Engineering and Technology</option>
<option value="35">Anil Neerukonda Institute Of Technology and Science</option>
<option value="36">Anjalai Ammal Mahalingam Engineering College</option>
<option value="39">Annamacharya Institute of Technology and Sciences, Tirupati</option>
<option value="40">Annamalai university</option>
<option value="37">Anna University - BIT Campus Tiruchirappalli</option>
<option value="38">Anna University School of Architecture and Planning</option>
<option value="41">Anuradha Engineering College Chikhali</option>
<option value="42">Apollo Priyadarshanam Institute of Technology</option>
<option value="43">Army Institute of Management and Technology</option>
<option value="44">Arunai Engineering College</option>
<option value="45">Audisankara College of Engineering and Technology(ASCET)</option>
<option value="46">Aurora's Scientific and Technological Institute</option>
<option value="47">AVN Institute of Engineering and Technology</option>
<option value="49">Babasaheb Bhimrao Ambedkar University</option>
<option value="50">Badruka College of Commerce and Arts</option>
<option value="51">Banasthali University</option>
<option value="52">Bandung Institute of Technology</option>
<option value="53">Bangalore Institute of Management Studies</option>
<option value="54">Bangalore Institute of Technology</option>
<option value="55">Bangladesh University of Engineering and Technology</option>
<option value="56">Bannari Amman Institute of Technology</option>
<option value="57">Bapatla Engineering College</option>
<option value="58">Bapatla Women's Engineering College</option>
<option value="59">Barathiyar University</option>
<option value="60">Bengal Engineering and Science University, Shibpur</option>
<option value="64">Bharathidasan Institute of Management</option>
<option value="65">Bharathidasan University</option>
<option value="66">Bharathiyar College of Engineering and Technology</option>
<option value="62">Bharath Niketan Engineering College</option>
<option value="63">Bharath University</option>
<option value="61">Bharat Institute of Engineering and Technology</option>
<option value="67">Bhoj Reddy Engineering College for Women</option>
<option value="68">Bhopal School of Social Sciences</option>
<option value="69">Birla Institute of Technology, Mesra</option>
<option value="70">Bishop Heber College</option>
<option value="71">BITS Pilani Hyderabad Campus</option>
<option value="72">BITS Pilani K.K. Birla Goa Campus</option>
<option value="73">BMS Engineering College</option>
<option value="74">BMS Institute of Technology</option>
<option value="75">Brindavan Institute of Technology and Science</option>
<option value="48">B.S.Abdur Rahman University</option>
<option value="76">BSA Crescent Engineering College</option>
<option value="77">C. Abdul Hakeem College of Engineering and Technology</option>
<option value="78">Canara Engineering College</option>
<option value="79">CARE School of Engineering</option>
<option value="80">Carnegie Mellon University</option>
<option value="81">CBM Arts and Science College</option>
<option value="82">Central Electro Chemical Research Institute</option>
<option value="83">Central University of Las Villas</option>
<option value="84">Chaitanya Engineering College</option>
<option value="85">Chaithanya Bharathi Institute of Technology(CBIT)</option>
<option value="86">Chalapathi Institute of Engineering and Technology</option>
<option value="87">Chandubhai S Patel Institute of Technology(CSPIT)</option>
<option value="88">Channabasaveshwara Institute of Technology</option>
<option value="89">Chendhuran College of Engineering and Technology</option>
<option value="90">Chennai Film School</option>
<option value="91">Chennai institute of technology</option>
<option value="92">Chennai Mathematical Institute</option>
<option value="93">Chettinad College of Engineering and Technology</option>
<option value="94">Christ the King Engineering College</option>
<option value="96">Christu Jyoti Institute of Technology Science(CJITS)</option>
<option value="95">Christ University</option>
<option value="97">CMR Engineering College</option>
<option value="98">CMR Institute of Technology</option>
<option value="99">CMR Technical Campus</option>
<option value="100">Cochin University of Science and Technology</option>
<option value="101">Coimbatore Institute of Engineering and Technology (CIET)</option>
<option value="102">Coimbatore Institute of Technology</option>
<option value="103">College of Applied Science, Vadakkencherry</option>
<option value="104">College of Engineering and Management Punnapra, Alappuzh</option>
<option value="105">College of Engineering and Technology, Bhubaneswar</option>
<option value="106">College of Engineering Chengannur</option>
<option value="109">College of Engineering, Guindy</option>
<option value="107">College of Engineering Thalassery</option>
<option value="108">College of Engineering Trivandrum, Kerala</option>
<option value="110">College of Technology, Pantnagar</option>
<option value="111">Comenius University in Bratislava</option>
<option value="112">CSI College of Engineering</option>
<option value="113">CVR College of Engineering</option>
<option value="116">Delhi College Of Engineering</option>
<option value="117">Delhi University</option>
<option value="114">D.G Vaishnav college</option>
<option value="118">Dhanalakshmi College of Engineering</option>
<option value="119">Dhanalakshmi Srinivasan College of Engineering and Technology</option>
<option value="120">Dhirajlal Gandhi College Of Technology</option>
<option value="121">DKTE Society's Textile and Engineering Institute, Ichalkaranji</option>
<option value="122">DMI college of engineering</option>
<option value="123">DMS Pondicherry University</option>
<option value="591">Dr G R Damodaran Institute of Management</option>
<option value="115">D.R.K. College of Engineering and Technology</option>
<option value="124">Dr. Mahalingam College of Engineering and Technology</option>
<option value="126">Dr. Nallini Institution of Engineering and Technology</option>
<option value="125">Dr. N.G.P. Institute of Technology</option>
<option value="130">Dronacharya College of Engineering</option>
<option value="127">Dr. RMLS College, Muzaffarpur</option>
<option value="129">Dr.RR SR Technical University</option>
<option value="128">Dr. S.J.S Paul Memorial College of Engineering and Technology</option>
<option value="131">DVR DHS MIC College of Technology</option>
<option value="132">Easwari Engineering College</option>
<option value="133">EGS Pillay Engineering College</option>
<option value="134">Einstein College of Engineering</option>
<option value="135">ER DCI Institute of Technology</option>
<option value="137">Erode Builder Educational Trust's Group of Institutions</option>
<option value="136">Er.Perumal Manimekalai College of Engineering</option>
<option value="138">Ethiraj college for Women</option>
<option value="594">Excel group of instution</option>
<option value="139">FEAT Annamalai University</option>
<option value="140">Francis Xavier Engineering College</option>
<option value="146">Gandhigram Rural institute</option>
<option value="145">Gandhi Institute for Technogical Advancement</option>
<option value="147">Gayatari Vidya Parishad College Of Engineering</option>
<option value="148">GITAM Institute of Management</option>
<option value="149">GITAM Institute of Science</option>
<option value="150">GITAM Institute of Technology, Hyderabad</option>
<option value="151">GITAM Institute of Technology, Vizag</option>
<option value="152">GITAM School of Technology, Bengaluru</option>
<option value="143">G.K.M College of Engineering and Technology</option>
<option value="153">GKM College of Engineering and Technology</option>
<option value="154">Gnanamani College of Engineering</option>
<option value="142">G. Narayanamma Institute of Technology and Science</option>
<option value="155">Gokaraju Rangaraju Institute of Engineering and Technology</option>
<option value="156">Gossener College</option>
<option value="157">Government College of Engineering, Salem</option>
<option value="600">Government College of Engineering,srirangam</option>
<option value="158">Government College of Engineering, Tirunelveli</option>
<option value="159">Government College of Technology, Coimbatore</option>
<option value="160">Government Engineering College, Thrissur</option>
<option value="161">Government Engineering College, Trivandrum</option>
<option value="162">Government Model Engineering College</option>
<option value="141">G Pullaiah College of Engineering and Technology</option>
<option value="144">G.Pulla Reddy Engineering College</option>
<option value="163">Great Lakes Institute of Management</option>
<option value="164">GRT Institute of Engineering and Technology</option>
<option value="165">Gudlavalleru Engineering College</option>
<option value="166">Gurgaon Institute of Technology</option>
<option value="167">Guru Ghasidas Vishwavidyalaya</option>
<option value="168">Guru Nanak College</option>
<option value="169">Gyan Ganga College of Technology</option>