-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1132 lines (1086 loc) · 51.5 KB
/
index.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">
<title>Assailing Falcons</title>
<link rel="shortcut icon" href="img/8.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- google fonts -->
<!-- Css link -->
<!-- <link rel="stylesheet" href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css"> -->
<link href="https://unpkg.com/ionicons@4.5.0/dist/css/ionicons.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.transitions.css">
<link rel="stylesheet" href="css/animate.min.css">
<link rel="stylesheet" href="css/lightbox.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/preloader.css">
<link rel="stylesheet" href="css/image.css">
<link rel="stylesheet" href="css/icon.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body id="top">
<header id="navigation" class="navbar-fixed-top animated-header">
<div class="container">
<div class="navbar-header">
<!-- responsive nav button -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- /responsive nav button -->
<!-- logo -->
<h1 class="navbar-brand">
<a href="#body"><img src="img/logo.png" height="40" width="270" alt=""></a>
</h1>
<!-- /logo -->
</div>
<!-- main nav -->
<nav class="collapse navbar-collapse navbar-right" role="navigation">
<ul id="nav" class="nav navbar-nav menu">
<li><a href="#top">Home</a></li>
<li><a href="#features">About Us</a></li>
<li><a href="#portfolio">Planes</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#pricing-table">Mechanisms</a></li>
<li><a href="#blog">Achievements</a></li>
<li><a href="#testimonial">Testimonial</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#contact-form">Contact Us</a></li>
</ul>
</nav>
<!-- /main nav -->
</div>
</header>
<div class="wrapper">
<section id="banner">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block" style="text-align:center">
<h1>Assailing Falcons</h1>
<h2>Most experienced Aero design team of VIT University. <br>We design and fabricate advanced class RC aircraft.</h2>
<div class="buttons">
<a href="#features" class="btn btn-learn" >Explore</a>
<a href="https://drive.google.com/file/d/1edvhPx-k9qiiMRHIwOOsPmD8pmGt_UIS/view?usp=sharing" target="_blank" class="btn btn-learn">Brochure</a>
</div>
</div>
</div>
</div>
</div>
<div class="scrolldown">
<a id="scroll" href="#features" class="scroll"></a>
</div>
</section>
<section id="features">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="title">
<h2>About Us</h2>
<p>Our Departments</p>
</div>
</div>
</div>
<div class="row ctr">
<div class="col-md-4 col-xs-12 col-sm-6">
<div class="feature-block text-center">
<div class="icon-box">
<img src="img/desdpt.png">
</div>
<h4 class="wow fadeInUp" data-wow-delay=".3s">Design</h4>
<p class="wow fadeInUp" data-wow-delay=".5s">One of the most important part of building an aircraft is ‘design’. To design aircraft that are admired by the likes of engineers at Lockheed Martin and Boeing, we give design research paramount importance. Multiple factors such as control surface sizing, drag reduction, crosswind handling capability, air-foil and fuselage design analysis are taken into consideration. We design aircraft best suited for peak performance in a particular location. After extensive research, the design team iterate and finalize factors such as dimension of wings based on the lift requirements, tail dimension as per stability requirements and control surface design as per roll rate and estimated crosswind.</p>
</div>
</div>
<div class="col-md-4 col-xs-12 col-sm-6">
<div class="feature-block text-center">
<div class="icon-box">
<img src="img/cfddept.png">
</div>
<h4 class="wow fadeInUp" data-wow-delay=".3s">CFD</h4>
<!-- <p class="wow fadeInUp" data-wow-delay=".5s">Computational Fluid Dynamics is performed on ANSYS Fluent and Star CCM, to validate the results provided by the design department which provides more accurate Lift, Drag & Pressure Distribution figures. CFD basically works by solving the governing equations of fluid dynamics i.e. the Navier-Stokes equations. With this, the team is able to analyze the overall aerodynamic characteristics of the aircraft and improve further based on CFD results. This aircraft simulation shows the airflow distribution around an aircraft design at low subsonic compressible flow regime.</p> -->
<p class="wow fadeInUp" data-wow-delay=".5s">Computational Fluid Dynamics is performed using ANSYS Fluent and Star CCM+ to validate the results provided by the design department. This gives an accurate estimation of Lift, Drag & Pressure Distribution associated with the aircraft. This result can help us pin-point the source of maximum drag or minimum lift which allows us to modify the overall aerodynamic characteristics of the aircraft. This aircraft simulation shows the airflow distribution around an aircraft design at low subsonic incompressible flow regime.</p>
</div>
</div>
<div class="col-md-4 col-xs-12 col-sm-6">
<div class="feature-block text-center">
<div class="icon-box">
<img src="img/strdept.png">
</div>
<h4 class="wow fadeInUp" data-wow-delay=".3s">Structure</h4>
<p class="wow fadeInUp" data-wow-delay=".5s">This department models the aircraft on 3D modelling software like SolidWorks, CATIA etc. while utilizing the design parameters, to visualize the actual aircraft, taking us a step closer to bringing our dreams into reality. Structural analysis is done using software like ANSYS Static Structural module. The most important role of this department is to incorporate a strong yet light structure by making use of extensive, in-house fabricated composites. Further, the structures department designs an efficient and reliable payload dropping mechanism, so as to carry and drop the maximum payload. This department also designs the landing gear system for the aircraft.</p>
</div>
</div>
<div class="col-md-4 col-xs-12 col-sm-6">
<div class="feature-block text-center">
<div class="icon-box">
<img src="img/avidept.png">
</div>
<h4 class="wow fadeInUp" data-wow-delay=".3s">Avionics</h4>
<p class="wow fadeInUp" data-wow-delay=".5s">The avionics department designs and implements electronic systems at par with the rest of the aircraft to control and communicate with the craft. We use commercially available flight controllers as well as microcontrollers to develop and test our own logics while playing with a host of sensors and actuators. Our aim is also to go beyond the requirements of the mission statements of the competitions we participate in, venture deeper into the fields of UAVs and autonomous flight systems, using better algorithms, efficient electronics and computer vision. </p>
</div>
</div>
<div class="col-md-4 col-xs-12 col-sm-6">
<div class="feature-block text-center">
<div class="icon-box">
<img src="img/propdept.png">
</div>
<h4 class="wow fadeInUp" data-wow-delay=".3s">Propulsion</h4>
<p class="wow fadeInUp" data-wow-delay=".5s">Propulsion system is vital to an aircraft. It gives life to the aircraft body. Our aircraft propulsion system consists of either an electric motor or an IC engine to generate the required power which drives a propeller to generate the required thrust. A light weight aircraft with high lift capacity is ineffective without an adequately powerful propulsion system. At Assailing Falcons, we experiment using a wide range of propellers in order to select the optimum propeller for our competition mission requirements. This propeller analysis, coupled with our highly efficient aircraft, has given us many international accolades.</p>
</div>
</div>
<div class="col-md-4 col-xs-12 col-sm-6">
<div class="feature-block text-center">
<div class="icon-box">
<img src="img/mgtdpt.png">
</div>
<h4 class="wow fadeInUp" data-wow-delay=".3s">Management</h4>
<p class="wow fadeInUp" data-wow-delay=".5s">Management involves the tactical aspect of the day-to-day functioning of the team. Management regulates the working environment to make sure that team is moving impudently. The team faces umpteen responsibilities each day, one of which is managing events and people. The Management team is responsible for the smooth functioning of each and every department in the team. Further, management looks into documentation and sponsorships. This helps the team financially while giving a face to the team.</p>
</div>
</div>
</div>
</div>
</section>
<section id="counter">
<div class="container">
<div class="row">
<div class="title">
<h2>FACTS</h2>
<p>A Spectacular UAV</p>
</div>
<div class="col-md-3 col-sm-6 col-xs-6">
<div class="block wow fadeInRight" data-wow-delay=".3s">
<i class="icon ion-md-calendar"></i>
<p>Founded in</p>
<p class="count-text">
<span class="counter-digit">2010 </span>
</p>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-6">
<div class="block wow fadeInRight" data-wow-delay=".5s">
<i class="icon ion-md-airplane"></i>
<p>RC Airplanes Built</p>
<p class="count-text">
<span class="counter-digit">8 </span> +
</p>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-6">
<div class="block wow fadeInRight" data-wow-delay=".7s">
<i class="icon ion-md-trophy"></i>
<p>World Rank</p>
<p class="count-text">
<span class="counter-digit">4 </span> th
</p>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-6">
<div class="block wow fadeInRight" data-wow-delay=".9s">
<i class="icon ion-md-star"></i>
<p>Asia/Pacific Rank</p>
<p class="count-text">
<span class="counter-digit">1 </span> st
</p>
</div>
</div>
</div>
</div>
</section>
<section id="portfolio">
<div class="container">
<div class="row ctr">
<div class="col-md-12">
<div class="title">
<h2>RC AIRPLANES</h2>
</div>
<div class="block">
<div class="recent-work-mixMenu">
<ul>
<li><button class="filter" data-filter="all">All</button></li>
<li><button class="filter" data-filter=".category-2">Advanced</button></li>
<li><button class="filter" data-filter=".category-1">Regular</button></li>
</ul>
</div>
<div class="recent-work-pic">
<ul id="mixed-items">
<li class="mix category-2 col-md-4 col-xs-12" data-my-order="2">
<a class="example-image-link" href="img/work10.png" data-lightbox="example-set">
<img class="img-responsive" src="img/work10.png" alt="">
<div class="overlay">
<h4>Redbird is designed to simulate colonization of Mars by landing colonists through an autonomous glider in a drop zone from an altitude of more than 50ft and delivering supply payloads for their survival. The aircraft was refined with a new 750 W electric motor propulsion. In addition, Hoerner Wingtips and a lifting body fuselage increased the aircraft's aerodynamics and subsequently payload lifting capacity that led the team to achieve worldwide 4th position and defend 1st position in Asia-Pacific in the Advanced Class category of SAE Aero design 2019.</h4>
<i class="icon ion-md-add"></i>
</div>
</a>
</li>
<li class="mix category-1 col-md-4 col-xs-12" data-my-order="1">
<a class="example-image-link" href="img/work1.png" data-lightbox="example-set">
<img class="img-responsive" src="img/work1.png" alt="">
<div class="overlay">
<h4>The SAE Aero Design East 2015 was an important milestone in the history of Assailing Falcons. It saw one of the most ambitious designs attempted by us, a Bi-plane. Bi-planes, though associated with an early era of aviation presents itself with its own set of complexities owing to the lack of credible data and research. The maximisation of lift, minimisation of drag along with optimisation of accessible resources were the principal targets. </h4>
<i class="icon ion-md-add"></i>
</div>
</a>
</li>
<li class="mix category-2 col-md-4 col-xs-12" data-my-order="2">
<a class="example-image-link" href="img/work2.png" data-lightbox="example-set">
<img class="img-responsive" src="img/work2.png" alt="">
<div class="overlay">
<h4>Zephyrus is indeed the majestic advanced class aircraft which definitely lives up to its name- The Greek god of winds. It is a single-engine aircraft that can lift a total of 36 pounds and drop two payloads from an altitude of 175 ft, at a cruising velocity of 43 ft/s. This very aircraft helped us secure worldwide 6th position, the best position in the Asia/ pacific region at the SAE Aero Design East Competition, which is by far, the best position of the team.</h4>
<i class="icon ion-md-add"></i>
</div>
</a>
</li>
<li class="mix category-1 col-md-4 col-xs-12" data-my-order="3">
<a class="example-image-link" href="img/work3.png" data-lightbox="example-set">
<img class="img-responsive" src="img/work3.png" alt="">
<div class="overlay">
<h3>Knightout</h3>
<i class="icon ion-md-add"></i>
</div>
</a>
</li>
<li class="mix category-2 col-md-4 col-xs-12" data-my-order="5">
<a class="example-image-link" href="img/work4.png" data-lightbox="example-set">
<img class="img-responsive" src="img/work4.png" alt="">
<div class="overlay">
<h4>Jetaayu has a wingspan of 3.2m and weighs 16 pounds. It has the capability of carrying 5 pounds of static payload and 2 pounds of dynamic payload. With the help of efficient DAS (Data Acquisition System) and the installation of necessary sensors, the aircraft can be modified for weather analysis and thermal imaging. In the 2017 SAE EAST aero design competition Jetaayu secured an overall world ranking of 7. It also helped the team secure an overall 3rd ranking in the Indian Space Conclave 2017 competition held by SEDS VIT.</h4>
<i class="icon ion-md-add"></i>
</div>
</a>
</li>
<li class="mix category-1 col-md-4 col-xs-12" data-my-order="6">
<a class="example-image-link" href="img/work5.png" data-lightbox="example-set">
<img class="img-responsive" src="img/work5.png" alt="">
<div class="overlay">
<h3>Jugaad</h3>
<i class="icon ion-md-add"></i>
</div>
</a>
</li>
<li class="mix category-2 col-md-4 col-xs-12" data-my-order="7">
<a class="example-image-link" href="img/work6.png" data-lightbox="example-set">
<img class="img-responsive" src="img/work6.png" alt="">
<div class="overlay">
<h4>Carvao is a Medium altitude, long endurance. (MALE) aircraft under the classification provided by DGCA. Fitted with onboard telemetry systems and First person view camera, the aircraft can be used remotely in a wide range of mission scenarios. With a versatile payload bay, the aircraft is capable of transporting both static and dynamic payloads with a maximum payload of 28 lbs. Featuring a wide wing span for optimal endurance and glide performance.</h4>
<i class="icon ion-md-add"></i>
</div>
</a>
</li>
<li class="mix category-1 col-md-4 col-xs-12" data-my-order="4">
<a class="example-image-link" href="img/work7.png" data-lightbox="example-set">
<img class="img-responsive" src="img/work7.png" alt="">
<div class="overlay">
<h4>Cirio was one of the jewels of vast number of planes manufactured by assailing falcons, is the first of its kind. It has a tapered wing a novelty in its own self in terms of fabrication Cirio flies flawlessly, it has a wing area of more than 1 meter square with helps it lift more than 15 pounds without breaking a sweat. Cirio is where perfection meets simplicity. With the three fins with a falcon emblazoned on them, the classic blue and white colors make it look ready to rule over the skies.</h4>
<i class="icon ion-md-add"></i>
</div>
</a>
</li>
<li class="mix category-1 col-md-4 col-xs-12" data-my-order="4">
<a class="example-image-link" href="img/work8.png" data-lightbox="example-set">
<img class="img-responsive" src="img/work8.png" alt="">
<div class="overlay">
<h4>Falcons Beta focused mainly on integrating both from structures and design point of view. A radical change was made in material selection process focusing majorly on light weight materials to give a good strength to weight ratio to the aircraft. This made the plane lift nearly twice its designed weight which was a notch higher than previously achieved. Designed to compete at Van Nuys, Los Angeles this plane announced the entry of Falcons’ into the modern era of RC planes achieving an overall rank of 19th making it a huge success.</h4>
<i class="icon ion-md-add"></i>
</div>
</a>
</li>
<li class="mix category-1 col-md-4 col-xs-12" data-my-order="4">
<a class="example-image-link" href="img/work9.png" data-lightbox="example-set">
<img class="img-responsive" src="img/work9.png" alt="">
<div class="overlay">
<h4>Falcons Alpha was a beautiful amalgamation of aerodynamics and structures built to meet its optimum output under the given conditions by the Society of Automotive Engineers (SAE). Falcons Alpha was a cargo plane to lift nearly 1.5 times its original weight controlled by a 2.4 GHz transmitter from a ground source. Designed to compete at FortWorth, Texas in 2011 Falcons Alpha gave Falcons’ a historic flight making it the first ever aircraft built by VIT’s own aero team to touch the American sky and finished at 37th of the 75 teams.</h4>
<i class="icon ion-md-add"></i>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="play-video">
<div class="container">
<div class="row">
<div class="block">
<div class="col-md-12">
<h2 class="wow fadeInUp" data-wow-delay=".3s">PRESENTING YOU THE AIRCRAFT OF 2019</h2>
<div class="title">
<h2 class="wow fadeInUp" data-wow-delay=".5s">Redbird </h2>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="block">
<p class="wow fadeInUp" data-wow-delay=".5s">Manufacturing </p>
<a href="https://youtu.be/jPY-tGPpjbk" class="html5lightbox" data-width=800 data-height=400>
<div class="button icon ion-md-play wow zoomIn" data-wow-delay=".3s"></div>
</a>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="block">
<p class="wow fadeInUp" data-wow-delay=".5s">Journey </p>
<a href="https://youtu.be/_QFCf2j-ffY" class="html5lightbox" data-width=800 data-height=400>
<div class="button icon ion-md-play wow zoomIn" data-wow-delay=".3s"></div>
</a>
</div>
</div>
</div>
</div>
</section>
<section id="team">
<div class="container">
<div class="row">
<div class="title">
<h2>TEAM</h2>
<p>The Frontrunners, Efficient Engineers and Managers Who Made This Dream a Reality.</p>
</div>
<div class="row col-md-12 col-sm-12 col-xs-12" >
<div class="block wow fadeInLeft" data-wow-delay=".3s" style="display: block;margin-left: auto;margin-right: auto; min-width: 350px;max-width: 55%" >
<div >
<img src="img/team-img3.jpg" alt="">
<div class="team-overlay">
<h3>TEAM 2019</h3>
<span class="icon"><i class="ion-md-quote"></i></span>
<table style="border-collapse: collapse;width: 120%;text-align: left;">
<tr>
<td><p>A S Ashwin</p></td>
<td><p>Advaith.V</p></td>
<td><p>Arjun Sharma</p></td>
<td><p>B Gautam Rao</p></td>
</tr>
<tr>
<td><p>Firoz Borah</p></td>
<td><p>Harsh Kataruka</p></td>
<td><p>Keshav Biyani</p></td>
<td><p>Prateek Gupta</p></td>
</tr>
<tr>
<td><p>Pranjal Ghosh</p></td>
<td><p>Rahul Goenka</p></td>
<td><p>Rushikesh</p></td>
<td><p>Sharad Rathi</p></td>
</tr>
<tr>
<td><p>Shomi Deep</p></td>
<td><p>Sindhu Manchikanti</p></td>
<td><p>Vishisht Sahai</p></td>
<td><p>Luke Da Luz</p></td>
</tr>
<tr>
<td><p>Anant Sai</p></td>
<td><p>Avyadhish</p></td>
<td><p>Gautam Jhawar</p></td>
<td><p>Harish Warrier</p></td>
</tr>
<tr>
<td><p>Kamal Varma</p></td>
<td><p>Jayavardhan</p></td>
<td><p>Kaushik</p></td>
<td><p>Rahul Ramanathan</p></td>
</tr>
<tr>
<td><p>Rakshith M</p></td>
<td><p>Rohan Muslekar</p></td>
<td><p>Sai Unnat Basa</p></td>
<td><p>Saroj</p></td>
</tr>
<tr>
<td><p>Shantanu Tiwari</p></td>
<td><p>Siddharth Ghosh</p></td>
<td><p>Soumyajit Mitra</p></td>
<td><p>Vivek Kumar Giri</p></td>
</tr>
<tr>
<td><p>Yash Kataruka</p></td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="block wow fadeInLeft" data-wow-delay=".3s">
<img src="img/team-img1.jpg" alt="">
<div class="team-overlay">
<h3>TEAM 2018</h3>
<span class="icon"><i class="ion-md-quote"></i></span>
<table style="border-collapse: collapse;width: 120%;text-align: left;">
<tr>
<td><p>Abhishek Jain</p></td>
<td><p>Abhitej Singh</p></td>
<td><p>Aditya Das</p></td>
<td><p>Rahul Goenka</p></td>
</tr>
<tr>
<td><p>Anant Chandra</p></td>
<td><p>Anay Bhoraskar</p></td>
<td><p>Anirudh Bharat</p></td>
<td><p>Rushikesh</p></td>
</tr>
<tr>
<td><p>Arbaz Quamer</p></td>
<td><p>Billton Joseph</p></td>
<td><p>Jatin Thaman</p></td>
<td><p>Sharad Rathi</p></td>
</tr>
<tr>
<td><p>Advaith.V</p></td>
<td><p>Neelay Doshi</p></td>
<td><p>Pranay</p></td>
<td><p>Shomi Deep</p></td>
</tr>
<tr>
<td><p>As Ashwin</p></td>
<td><p>Aditya</p></td>
<td><p>Arjun Sharma</p></td>
<td><p>Sindhu Manchikanti</p></td>
</tr>
<tr>
<td><p>Gautam Rao</p></td>
<td><p>Firoz Borah</p></td>
<td><p>Harsh Kataruka</p></td>
<td><p>Vishisht Sahai</p></td>
</tr>
<tr>
<td><p>Keshav Biyani</p></td>
<td><p>Prateek Gupta</p></td>
<td><p>Pranjal Ghosh</p></td>
<td><p>Luke</p></td>
</tr>
<tr>
<td><p>Kartik Bharadwaj</p></td>
</tr>
</table>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="block wow fadeInLeft" data-wow-delay=".6s">
<img src="img/team-img2.jpg" alt="">
<div class="team-overlay">
<h3>TEAM 2017 </span></h3>
<span class="icon"><i class="ion-md-quote"></i></span>
<table style="border-collapse: collapse;width: 120%;text-align: left;">
<tr>
<td><p>Abhishek Jain</p></td>
<td><p>Abhitej Singh</p></td>
<td><p>Aditya Das</p></td>
<td><p>Kunj Jain</p></td>
</tr>
<tr>
<td><p>Anant Chandra</p></td>
<td><p>Anay Bhoraskar</p></td>
<td><p>Anirudh Bharat</p></td>
<td><p>Mrinal Srivastava</p></td>
</tr>
<tr>
<td><p>Arbaz Quamer</p></td>
<td><p>Billton Joseph</p></td>
<td><p>Jatin Thaman</p></td>
<td><p>Mukkund Sunji</p></td>
</tr>
<tr>
<td><p>Neelansh Kamal</p></td>
<td><p>Neelay Doshi</p></td>
<td><p>Pranay</p></td>
<td><p>Omkar Bojjawar</p></td>
</tr>
<tr>
<td><p>Priyanshu</p></td>
<td><p>Ramesh Atluri</p></td>
<td><p>Jivesh Kaul</p></td>
<td><p>Soham Khilari</p></td>
</tr>
<tr>
<td><p>Utkarsh Jai</p></td>
<td><p>Yash Vashi</p></td>
<td><p>Snehal Singh</p></td>
<td><p>Shubhendu</p></td>
</tr>
<tr>
<td><p>Shubham</p></td>
<td><p>Aditya Sajith</p></td>
<td><p>Kartik Bharadwaj</p></td>
<td><p>Rahul Sankarankutty</p></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="pricing-table">
<div class="container">
<div class="row ctr">
<div class="title">
<h2>MECHANISMS USED</h2>
</div>
<div class="col-md-3 col">
<div class="block text-center wow fadeInLeft" data-wow-delay=".3s">
<ul>
<li>
<h4>PAYLOAD DROPPING</h4>
</li>
<div style="padding:30px; margin:20px;margin-bottom:151px">
<p>To drop payloads, we make use of a Pixhawk radio module. Pixhawk is a radio telemetry module which gathers data from the plane such as GPS location, heading velocity, altitude in real time and relay’s it to the ground station. This module can be programmed to drop payloads manually as well as automatically from a height of 300 feet, in case of any signal loss it can be programmed for home lock which will return the plane to its take off point and land it. </p>
</div>
</ul>
</div>
</div>
<div class="col-md-3 col">
<div class="block text-center wow fadeInRight" data-wow-delay=".3s">
<ul>
<li>
<h4>AUTONOMOUS GLIDER</h4>
</li>
<div style="padding:24px; margin:20px;margin-bottom:88px;padding-bottom:3px">
<p >The 2019 Mission statement involved designing and implementing an autonomous glider to mimic colonization of Mars by landing colonists in a drop zone. The glider was designed to be delivered onto a designated drop zone autonomously using locking of GPS coordinates and stabilizing the glider based on gyro inputs, accelero inputs and PID stabilization. The autonomous glide capability had to be employed while carrying maximum colonists in a no-propulsion-system glider and with a total weight constraint of 250 grams. </p>
</div>
</ul>
</div>
</div>
<div class="col-md-3 col">
<div class="block text-center wow zoomIn" data-wow-delay=".3s">
<ul>
<li>
<h4>THERMAL IMAGING</h4>
</li>
<div style="padding:30px; margin:20px;margin-bottom:176px;">
<p style="margin-bottom: 95px;">Pixhawk is also capable of thermal imaging and can detect hotspots. For instance, if a fire is lit by someone in need of rescue, it can be detected by its heat signature. Other than rescue operations, it can also be used to identify dry spots in a patch of land , by which, optimum irrigation techniques can be applied. </p>
</div>
</ul>
</div>
</div>
<div class="col-md-3 col">
<div class="block text-center wow fadeInRight" data-wow-delay=".3s">
<ul>
<li>
<h4>SOS DETECTION</h4>
</li>
<div style="padding:24px; margin:20px;">
<p >Apart from payload dropping we have a FPV(Front Person View) camera on board of the plane which provides us with a real time video feed from the plane. This can be used by the pilot as a reference for his heading. We have also implemented various imaging techniques on the aircraft. It ranges from a simple circle detection from the live feed to more advanced, edge and contour detection to detect SOS. This will be of great help in disaster and rescue missions or operations. When a SOS is detected, the plane can send the location of its origin using Pixhawk, which helps in directing rescue operations to that position. </p>
</div>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="blog">
<div class="container">
<div class="row ctr">
<div class="col-md-12">
<div class="title">
<h2>OUR ACHIEVEMENTS</h2>
<p style="text-align:center">Take a moment off for us</p>
</div>
<div id="blog-post" class="owl-carousel">
<div>
<div class="block">
<img src="img/blog/blog-7.png" alt="" class="img-responsive">
<div class="content">
<h4><a href="#">SAE INTERNATIONAL EAST COMPETITION 2019</a></h4>
<small>Fort Worth, Texas, USA / 8-10 March, 2019</small><br><br>
<h5>STANDING</h5>
<small>1st in Design Report</small><br>
<small>1st in Technical/Oral Presentation</small><br>
<small>4th Overall</small>
<p style="margin-bottom: 32px;">
This was the most successful season Team ever had. 2019’s Flagship Redbird proved out to be one of the finest plane ever manufactured.Despite of drastic rulebook changes with the completely new mission statement team was successful in achieving 4th Overall ranking in advanced class category.
</p>
</div>
</div>
</div>
<div>
<div class="block">
<img src="img/blog/blog-6.png" alt="" class="img-responsive">
<div class="content">
<h4><a href="#">SAE INTERNATIONAL EAST COMPETITION 2018</a></h4>
<small>Lakeland, Florida, USA / 7-9 March, 2018</small><br><br>
<h5>STANDING</h5>
<small>7th in Design Report</small><br>
<small>4th in Presentation</small><br>
<small>6th in Humanitarian on target</small><br>
<small>6th Overall</small>
<p style="margin-bottom: 32px;">
SAE Aero Design proved to be a great experience for the team. Team Assailing Falcons received appreciation from companies like Boeing, NASA and Lockheed Martin. The name of the advance class aircraft was Zephyrus. Teams from colleges like Warsaw University, Georgia Tech, Akron University etc. participated along with us.
</p>
</div>
</div>
</div>
<div>
<div class="block">
<img src="img/blog/blog-1.jpg" alt="" class="img-responsive">
<div class="content">
<h4><a href="#">SAE INTERNATIONAL EAST COMPETITION 2017</a></h4>
<small>Lakeland, Florida, USA / 21-23 April, 2017</small><br><br>
<h5>STANDING</h5>
<small>6th in Design Report</small><br>
<small>4th in Presentation</small><br>
<small>7th in Humanitarian on target</small><br>
<small>7th Overall</small>
<p style="margin-bottom: 32px;">
SAE Aero Design proved to be a great experience for the team. Team Assailing Falcons received appreciation from companies like Boeing, NASA and Lockheed Martin. The name of the advance class aircraft was Jetaayu. Teams from colleges like Warsaw University, Georgia Tech, Akron University etc.participated along with us.
</p>
</div>
</div>
</div>
<div>
<div class="block">
<img src="img/blog/blog-2.png" alt="" class="img-responsive">
<div class="content">
<h4><a href="#">INDIAN SPACE CONCLAVE- SEDS VIT 2017</a></h4>
<small>VIT Vellore / 5th-6th August, 2017</small><br><br>
<h5>STANDING</h5>
<small>3rd Overall</small>
<p>
Indian Space Conclave was organised by SEDS VIT on 5th and 6th August, 2017. All the Aero Design teams of VIT University, Creation Labs, ASME and some professional organisations displayed their respective models and works. The team displayed their advance class aircraft ‘Jetaayu’. The aircraft remained the centre of attraction of the event and received huge crowd to witness its beauty. Faculties from different schools and other universities visited our stall and interacted with us. They provided their valuable feedback and expressed their desire to work with us.
</p>
</div>
</div>
</div>
<div>
<div class="block">
<img src="img/blog/blog-3.jpg" alt="" class="img-responsive">
<div class="content">
<h4><a href="#">ATMOS- BITS PILANI TECH EXPO 2017</a></h4>
<small>BITS Pilani, Hyderabad / 28-29 October, 2016</small><br><br>
<h5>STANDING</h5>
<small>2nd Overall</small>
<p style="margin-bottom: 48px;">
ATMOS is an event organised by BITS Pilani every year during their Tech Expo. Teams and individuals from universities like NITs, DTU, IITs, IISc, SRM and BITS participated and displayed their models and ideas. Jetaayu, the advance class aircraft of the team, witnessed overwhelming response from other teams and visitors. Officials from companies like Mytrah energy appraised the model. Other distinguished visitors included official from IITs, DRDO and ISRO.
</p>
</div>
</div>
</div>
<div>
<div class="block">
<img src="img/blog/blog-4.png" alt="" class="img-responsive">
<div class="content">
<h4><a href="#">7TH SAE INTERNATIONAL EAST COMPETITION 2016</a></h4>
<small>Los Angeles, California, the USA / 22-24 April, 2016</small><br><br>
<h5>STANDING</h5>
<small>9th Overall</small>
<p style="margin-bottom: 5px;">
SAE Aero Design proved to be a great experience for the team. Unlike previous year team participated in two categories namely Advance and Regular. Team Assailing Falcons was the only team from India to make through the technical inspection of Advance Class. Team received appreciation from companies like Boeing, NASA and Lockheed Martin. The name of the advance class and regular class were Carvao and Cirio respectively. Team from college like Warsaw University, Georgia Tech, IIT participated along us.
</p>
</div>
</div>
</div>
<div>
<div class="block">
<img src="img/blog/blog-5.png" alt="" class="img-responsive">
<div class="content">
<h4><a href="#">1st CONSOLATION PRIZE (Best Working Model Award) ENGINEER’S DAY TECH EXPO 2016</a></h4>
<small>VIT Vellore / 23rd September 2016</small>
<p style="margin-bottom: 72px;">
This tech expo was part of the International Tech Fest of VIT University organised annually. All the Schools and Teams of VIT University along with some professional organisations displayed their respective models and works. The team displayed their advance class aircraft ‘Carvao’. The aircraft remained the centre of attraction of the event and received huge crowd to witness its beauty. Faculties from different schools and other universities visited our stall and interacted with us.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="testimonial">
<div class="container">
<div class="row ctr">
<div class="title">
<h2>TESTIMONIAL</h2>
</div>
<div class="col col-md-6">
<div class="media wow fadeInLeft" data-wow-delay=".3s">
<div class="media-left">
<a href="#">
<img src="img/service-img1.png" alt="">
</a>
</div>
<div class="media-body">
<a href="#"><h4 class="media-heading">Pranjal Ghosh</h4></a>
<p>Building a plane requires hard-work and dedication, and more than that, it needs punctuality, and that is what Pranjal is known for. Sticking to the deadlines and getting the work done within the time allotted and ensuring that a particular work ticks all the boxes is what makes Pranjal different and so important to the team. His sheer excellence in designing the plane and making the design report is what helped the team secure 6th position overall.</p>
</div>
</div>
</div>
<div class="col col-md-6">
<div class="media wow fadeInRight" data-wow-delay=".3s">
<div class="media-left">
<a href="#">
<img src="img/service-img2.png" alt="">
</a>
</div>
<div class="media-body">
<a href="#"><h4 class="media-heading">Firoz Borah</h4></a>
<p style="margin-bottom: 72px;">As the senior Avionics Engineer in the team, Firoz’s contribution to the department brings balance to the team. With the bulk of experience in this field, he helps the team make an efficient and a reliable avionics system that consists of Data Acquisition System and First Person View.</p>
</div>
</div>
</div>
<div class="col col-md-6">
<div class="media wow fadeInLeft" data-wow-delay=".3s">
<div class="media-left">
<a href="#">
<img src="img/service-img3.png" alt="">
</a>
</div>
<div class="media-body">
<a href="#"><h4 class="media-heading">Snehal Singh</h4></a>
<p>Assailing falcons is one of the greatest aero design team in Asia I have ever known ... and I am really glad to be a part of this team as it provides me with vast opportunities in aerodynamic field which has been a passion of mine for years ..... So at last thanks alot to everyone who thought of me as capable to serve in this team.</p>
</div>
</div>
</div>
<div class="col col-md-6">
<div class="media wow fadeInRight" data-wow-delay=".3s">
<div class="media-left">
<a href="#">
<img src="img/service-img4.png" alt="">
</a>
</div>
<div class="media-body">
<a href="#"><h4 class="media-heading">Onkar Sharma</h4></a>
<p>These guys are the best student Aerodesign team in Asia. Each and every member is an aerospace enthusiast, dedicated towards building one of the best RC aircrafts. Highly recommended to join this team for an amazing experience.</p>
</div>
</div>
</div>
</div>
<div class="row ctr">
<div class="title">
</div>
<div class="col col-md-6">
<div class="media wow fadeInLeft" data-wow-delay=".3s">
<div class="media-left">
<a href="#">
<img src="img/service-img6.png" alt="">
</a>
</div>
<div class="media-body">
<a href="#"><h4 class="media-heading">Pranay Jhunjhunwala</h4></a>
<p>It's an amazing team. Extremely proud to work with such talented minds.</p>
</div>
</div>
</div>
<div class="col col-md-6">
<div class="media wow fadeInRight" data-wow-delay=".3s">
<div class="media-left">
<a href="#">
<img src="img/service-img9.png" alt="">
</a>
</div>
<div class="media-body">
<a href="#"><h4 class="media-heading">Karthik Bharawadwaj</h4></a>
<p>Amazing team full of creative thoughts and enthusiasm for planes.</p>
</div>
</div>
</div>
<div class="col col-md-6">
<div class="media wow fadeInLeft" data-wow-delay=".3s">
<div class="media-left">
<a href="#">
<img src="img/service-img5.png" alt="">
</a>
</div>
<div class="media-body">
<a href="#"><h4 class="media-heading">Varun Wadhwa</h4></a>
<p>
Bunch of success driven engineers with whom I was privileged to work with. Very friendly work environment and everyone is supportive towards each other. Was able to incorporate marketing skills to bring in sponsors whose insight helped us achieve the goals we set. Wishing all the best to future Assailing Falcons initiates.</p>
</div>
</div>
</div>
<div class="col col-md-6">
<div class="media wow fadeInRight" data-wow-delay=".3s">
<div class="media-left">
<a href="#">
<img src="img/service-img8.png" alt="">
</a>
</div>
<div class="media-body">
<a href="#"><h4 class="media-heading">Omkar Bojjawar</h4></a>
<p>A complete professional team of enthusiastic Aviation-Aerodynamics-Aero-modelling lovers aka engineers.....Delivering consistent efforts and results....</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="client-logo">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="title">
<h2>Our Sponsors</h2>
</div>
<div class="block">
<div id="Client_Logo" class="owl-carousel">
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo18.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo19.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo1.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo2.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo3.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo4.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo5.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo6.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo7.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo8.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo9.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo10.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo11.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo12.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/icons-solidworks.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo14.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo15.jpg" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo16.png" alt=""></a>
</div>
<div>
<a href="#"><img class="img-responsive" src="img/clientLogo/client-logo17.png" alt=""></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="gallery">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="title">
<h2> Image Gallery</h2>
</div>
<div class="different">
<div class="block ">
<div class="col-sm-3">
<img src = "img/pic/32.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/1.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/2.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/3.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/4.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/5.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/6.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/7.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/8.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/9.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/10.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/11.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/12.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/13.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/14.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/15.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/16.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/17.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/18.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/19.jpg" class = "thumbnail1" >
</div>
<div class="col-sm-3">
<img src = "img/pic/20.jpg" class = "thumbnail1" >