-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
1350 lines (1289 loc) · 71.5 KB
/
index.html
File metadata and controls
1350 lines (1289 loc) · 71.5 KB
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>
<!-- Ladybug tools home page -->
<!-- Check ladybug.tools for more information -->
<html>
<head>
<meta charset="utf-8">
<title>Ladybug Tools | Home Page</title>
<meta name="description" content="ladybug tools home page" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"
integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb"
crossorigin="anonymous"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" />
<link rel="stylesheet" href="assets/css/ladybug_tools_diagram.css" />
<link rel="stylesheet" href="assets/css/styles.css" />
<link rel="stylesheet" href="assets/css/testimonial.css" />
<!-- google adsense code -->
<!-- <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-3910371860767043",
enable_page_level_ads: true
});
</script> -->
</head>
<body class="bg-faded">
<!--|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||-->
<!-- Landing slide show -->
<!--|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||-->
<div id="header-slide-show" class="carousel slide" data-ride="carousel" data-pause="hover" data-interval="5000">
<ol class="carousel-indicators">
<li data-target="#header-slide-show" data-slide-to="0" class="active"></li>
<li data-target="#header-slide-show" data-slide-to="1"></li>
<li data-target="#header-slide-show" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<!-- START OF A NEW BANNER IMAGE -->
<div id="header-slide-show-item" class="carousel-item active">
<div id="header-slide-show-image" style="background-image:url('assets/img/home/headers/radCity.png')"></div>
<div id="header-slide-show-caption" class="carousel-caption d-md-block">
<div id="header-slide-text-wrapper" class="white-text">
<h1>
<span>
Ladybug Tools
</span>
</h1>
<br />
<h5 class="text-normal" >
<span>
Making environmental design <b>knowledge</b> and <b>tools</b> freely
<b>accessible</b> <br> to <b>every</b> person, project and design process
</span>
</h5>
</div>
<a rel="nofollow" class="page-scroll" href="#intro" title="Read more">
<i style="color:white" class="icon-sm fa fa-chevron-down fa-2x"></i>
</a>
</div>
</div>
<!-- END OF BANNER IMAGE -->
<!-- START OF A NEW BANNER IMAGE -->
<div id="header-slide-show-item" class="carousel-item">
<div id="header-slide-show-image" style="background-image:url('assets/img/home/headers/pollination_rhino.png')"></div>
<div id="header-slide-show-caption" class="carousel-caption d-md-block">
<br>
<br>
<br>
<div id="header-slide-text-wrapper" style="background:white; margin-bottom:1em;">
<h1>
<span>
<a href="https://pollination.solutions" target="_blank">Try Pollination!</a>
</span>
</h1>
<h5 class="text-normal" >
<span>
The fastest way to build models for Ladybug Tools and other BEM platforms
</span>
</h5>
</div>
<a href="https://pollination.solutions" target="_blank"
class="btn btn-primary-outline btn-xl m-t-3" style="color: white; background-color: black">Learn More!</a>
</div>
</div>
<!-- END OF BANNER IMAGE -->
<!-- START OF A NEW BANNER IMAGE
<div id="header-slide-show-item" class="carousel-item">
<div id="header-slide-show-image" style="background-image:url('assets/img/home/headers/BecomeAMember.png')"></div>
<div id="header-slide-show-caption" class="carousel-caption d-md-block">
<div id="header-slide-text-wrapper" style="background:white; margin-bottom:1em;">
<h1>
<span>
Developer Led Tutorials
</span>
</h1>
<h5 class="text-normal" >
<span>
Support Ladybug Tools by subscribing to the Ladybug Tools Academy
</span>
</h5>
</div>
<a href="https://ladybug-tools-academy.teachable.com/" target="_blank"
class="btn btn-primary-outline btn-xl m-t-3" style="color: white; background-color: black">Subscribe</a>
</div>
</div>
END OF BANNER IMAGE -->
</div>
<a class="carousel-control-prev" href="#header-slide-show" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#header-slide-show" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!--|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||-->
<!-- Navigation bar on the top of the page -->
<!--
NOTE: If you're making a change to the nav bar you need to edit
it in all the other pages with one caveat. On the main page tools
scrolls down to the #tools div however in other pages it is a drop-down
with multiple items.
-->
<!--|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||-->
<nav id="topNav" class="navbar fixed-top navbar-expand-sm">
<div class="container">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsingNavbar">
<span>☰</span>
</button>
<a class="navbar-brand img page-scroll" href="#header-slide-show">
<img src="assets/img/logo.png">
</a>
<a class="navbar-brand page-scroll" href="#header-slide-show">Ladybug Tools
</a>
<div class="collapse navbar-collapse" id="collapsingNavbar">
<!-- items on the left side of the navbar -->
<ul class="navbar-nav">
</ul>
<!-- items on the right side of the navbar -->
<ul class="nav navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link page-scroll" href="#tools" target="_blank">Tools</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="" id="educationDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Resources
</a>
<div class="dropdown-menu" aria-labelledby="educationDropdown">
<a class="dropdown-item" href="https://www.food4rhino.com/app/ladybug-tools" target="_blank">Download</a>
<a class="dropdown-item" href="https://docs.ladybug.tools/" target="_blank">Tutorials</a>
<a class="dropdown-item" href="https://ladybug-tools-academy.teachable.com/" target="_blank">Academy</a>
<a class="dropdown-item" href="./resource.html">Free Resources</a>
<a class="dropdown-item" href="./publication.html">Publications</a>
<a class="dropdown-item" href="./presentation.html">Presentations</a>
<a class="dropdown-item" href="./about.html#faq">FAQ</a>
<a class="dropdown-item" href="http://discourse.ladybug.tools" target="_blank">Forum</a>
<a class="dropdown-item" href="https://github.com/ladybug-tools" target="_blank">For Developers</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="" id="educationDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Products
</a>
<div class="dropdown-menu" aria-labelledby="educationDropdown">
<a class="dropdown-item" href="https://www.pollination.cloud/" target="_blank">Pollination</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="" id="aboutDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
About
</a>
<div class="dropdown-menu" aria-labelledby="aboutDropdown">
<a class="dropdown-item" href="./about.html">Story</a>
<a class="dropdown-item" href="./about.html#team">Team</a>
<a class="dropdown-item" href="./membership.html#partners">Partners</a>
<a class="dropdown-item" href="./membership.html#patronwall">Patrons</a></a>
</div>
</li>
</ul>
</div>
</div>
</nav>
<!--|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||-->
<!-- Facts grid -->
<!-- What is ladybug tools section -->
<!--|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||-->
<section id="intro">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="section-title">
<a href="#intro">
What is Ladybug Tools?
</a>
</h1>
<hr class="primary">
<p class="section-subcontent">
Ladybug Tools is a collection of free computer applications that support environmental design and education. <br>
Of all the available environmental design software packages, Ladybug Tools is among the most comprehensive, connecting 3D Computer-Aided Design (CAD) interfaces
to a host of validated simulation engines.
</p>
</br>
</div>
</div>
</div>
<!-- intro containers -->
<div class="container wow fadeInUp">
<div class="row">
<div class="col-lg-4 col-md-4 text-center">
<div class="feature">
<i class="icon-lg fa fa-check wow fadeInUp" data-wow-delay=".1s"></i>
<h6 class="text-uppercase">Validated</h6>
<p class="text-muted m-b-0">
Ladybug Tools is built on top of several validated simulation engines:
<a href="https://radiance-online.org/" target="_blank">Radiance</a>,
<a href="https://energyplus.net/" target="_blank">EnergyPlus/</a>
<a href="https://www.openstudio.net/" target="_blank">OpenStudio</a>,
<a href="https://windows.lbl.gov/software/therm" target="_blank">Therm/</a>
<a href="https://windows.lbl.gov/software/window" target="_blank">Window</a>
and <a href="https://www.openfoam.com/" target="_blank">OpenFOAM</a>.
</p>
</div>
</div>
<div class="col-lg-4 col-md-4 text-center">
<div class="feature">
<i class="icon-lg fa fa-github wow fadeInUp" data-wow-delay=".1s"></i>
<h6 class="text-uppercase">Free + Open Source</h6>
<p class="text-muted m-b-0">
Ladybug Tools is the only <a href="https://github.com/ladybug-tools" target="_blank">open source</a>
interface that unites all of its underlying open source engines.
Like these engines, it evolves through the consensus of an open community of experts.
</p>
</div>
</div>
<div class="col-lg-4 col-md-4 text-center">
<div class="feature">
<i class="icon-lg fa fa-group wow fadeInUp" data-wow-delay=".1s"></i>
<h6 class="text-uppercase">Community-Supported</h6>
<p class="text-muted m-b-0">
Ladybug Tools is supported by a passionate and diverse
<a href="https://bl.ocks.org/mostaphaRoudsari/raw/82f51f01b4619db2f09f/" target="_blank">community</a> from around the world.
Visit our <a href="http://discourse.ladybug.tools" target="_blank">online forum</a>
to see the discussions that shape our future development.
</p>
</div>
</div>
<div class="col-lg-4 col-md-4 text-center">
<div class="feature">
<i class="icon-lg fa fa-download wow fadeInUp" data-wow-delay=".1s"></i>
<h6 class="text-uppercase">500k+ Downloads</h6>
<p class="text-muted m-b-0">
Ladybug Tools has been downloaded more than 500,000 times and is the
<a href="https://www.food4rhino.com/browse?searchText=&sort_by=its_field_downloads&items_per_page=10&f%5B0%5D=im_field_unified_type%3A773&f%5B1%5D=im_field_platform_app%3A720" target="_blank">
3rd most downloaded</a> plugin for Grasshopper.
</p>
</div>
</div>
<div class="col-lg-4 col-md-4 text-center">
<div class="feature">
<img class="wow fadeInUp" data-wow-delay=".1s" src="assets/img/home/grid/integrated.png" style="width:100px;"/>
<h6 class="text-uppercase">Integrated</h6>
<p class="text-muted m-b-0">
Ladybug Tools runs within 3D modeling software and
<a href="#tools_diagram" class="page-scroll">allows data transfer between its simulation engines</a>.
So all geometry creation, simulation, and visualization happen within one interface.
</p>
</div>
</div>
<div class="col-lg-4 col-md-4 text-center">
<div class="feature">
<i class="icon-lg fa fa-exchange wow fadeInUp" data-wow-delay=".1s"></i>
<h6 class="text-uppercase">Flexible</h6>
<p class="text-muted m-b-0">
Ladybug Tools is composed of <a href="https://mostapharoudsari.gitbooks.io/ladybug-primer/content/text/components/SunPath.html" target="_blank">modular components</a>,
making it flexible across different stages of design and capable of answering
a variety of research questions.
</p>
</div>
</div>
<div class="col-lg-4 col-md-4 text-center">
<div class="feature">
<i class="icon-lg fa fa-sliders wow fadeInUp" data-wow-delay=".1s"></i>
<h6 class="text-uppercase">Parametric</h6>
<p class="text-muted m-b-0">
Ladybug Tools runs within parametric visual scripting interfaces,
enabling the <a href="https://tt-acm.github.io/DesignExplorer/" target="_blank">exploration of design spaces</a> and
the automation of tasks.
</p>
</div>
</div>
<div class="col-lg-4 col-md-4 text-center">
<div class="feature">
<img class="wow fadeInUp" data-wow-delay=".1s" src="assets/img/home/grid/visual.png" style="width:100px;"/>
<h6 class="text-uppercase">Visual</h6>
<p class="text-muted m-b-0">
By harnessing capabilities of CAD interfaces, Ladybug Tools produces a
variety of <a href="./ladybug.html#features" target="_blank">interactive 3D graphics</a>,
animations, and data visualizations.
</p>
</div>
</div>
<div class="col-lg-4 col-md-4 text-center">
<div class="feature">
<img class="wow fadeInUp" data-wow-delay=".1s" src="assets/img/home/grid/python.png" style="width:90px;"/>
<h6 class="text-uppercase">Cross-Platform</h6>
<p class="text-muted m-b-0">
Ladybug Tools is written in
<a href="https://en.wikipedia.org/wiki/Python_(programming_language)" target="_blank">Python</a>,
which can be run on virtually any operating system and plugged into any geometry engine
(provided the <a href="https://github.com/ladybug-tools/honeybee-grasshopper/blob/master/honeybee/plus.py" target="_blank">
geometry library</a> is translated).
</p>
</div>
</div>
<!-- end intro containers -->
</div>
</div>
</section>
<!--|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||-->
<!-- Tools grid -->
<!--|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||-->
<section id="tools" class="bg-alt">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="section-title">
<a href="#tools">
Tools
</a>
</h1>
<hr class="primary">
<p class="section-subcontent">
We are the developers of <a href="./ladybug.html">Ladybug</a>, <a href="./honeybee.html">Honeybee</a>, <a href="./butterfly.html">Butterfly</a>, <a href="./dragonfly.html">Dragonfly</a>, and
<a href="https://www.ladybug.tools/epwmap/" target="_blank">EPWMap</a> <br> We also contribute to open-source projects
including <a href="https://tt-acm.github.io/DesignExplorer/" target="_blank">Design Explorer</a> and the
<a href="https://www.payette.com/building-science/glazing-and-winter-comfort-tool" target="_blank">Glazing + Winter Comfort Tool</a>.
</p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div id="ladybug_icon" class="col-md-3 col-sm-6 col-6 text-center">
<a href="./ladybug.html">
<img class="img-fluid img-software-icon wow fadeInUp" src="assets/img/ladybug.png" />
</a>
<h6 class="text-uppercase">Ladybug</h6>
</div>
<div class="col-md-3 col-sm-6 col-6 text-center">
<a href="./honeybee.html">
<img class="img-fluid img-software-icon wow fadeInUp" src="assets/img/honeybee.png" />
</a>
<h6 class="text-uppercase">Honeybee</h6>
</div>
<div class="col-md-3 col-sm-6 col-6 text-center">
<a href="./dragonfly.html">
<img class="img-fluid img-software-icon wow fadeInUp" src="assets/img/dragonfly.png" />
</a>
<h6 class="text-uppercase">Dragonfly</h6>
</div>
<div class="col-md-3 col-sm-6 col-6 text-center">
<a href="./butterfly.html">
<img class="img-fluid img-software-icon wow fadeInUp" src="assets/img/butterfly.png" />
</a>
<h6 class="text-uppercase">Butterfly</h6>
</div>
</div>
<div class="container">
<div class="row text-center py-3">
<div class="col-lg-12">
<hr class="primary">
<p class="section-subcontent ">
Browse the features of each application using the web of interoperability below.<br />
<i>Double click an image to read more. Press Ctrl + Click to pan. Press Ctrl + Scroll to zoom.</i>
</p>
</div>
</div>
</div>
<div class="row">
<div id="tools_diagram" class="col-12" >
</div>
</div>
</div>
</section>
<!--|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||-->
<!-- Offices grid -->
<!--|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||-->
<section id="offices" class="d-none d-md-block bg-alt">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="section-title">
<a href="#offices">
Who is using Ladybug Tools?
</a>
</h1>
<hr class="primary">
<p class="section-subcontent">
Ladybug Tools is used by architects, engineers, consultants, simulation
experts, and academics alike. <br> Here is a short list of
the offices and schools using our applications.<br />
</p>
</br>
</div>
</div>
</div>
<div class="container wow fadeInUp">
<div class="card-group">
<a href="https://www.transsolar.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/transsolar_logo.png" alt="...">
</a>
<a href="https://www.brplusa.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/brplusa_logo.png" alt="...">
</a>
<a href="https://grimshaw.global/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/grimshaw_logo.png" alt="...">
</a>
<a href="https://www.fosterandpartners.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/foster_logo.png" alt="...">
</a>
<a href="https://www.henn.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/henn_logo.png" alt="...">
</a>
<a href="https://www.smithgroupjjr.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/partner/smithgroupjjr_logo.png" alt="...">
</a>
<a href="https://www.woodsbagot.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/woodsbagot_logo.png" alt="...">
</a>
</div>
<div class="card-group">
<a href="https://big.dk" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/big_logo.png" alt="...">
</a>
<a href="https://perkinswill.com" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/perkinswill_logo.png" alt="...">
</a>
<a href="https://atmoslab.io/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/atmoslab_logo.png" alt="...">
</a>
<a href="https://www.integralgroup.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/integralgroup_logo.png" alt="...">
</a>
<a href="https://ashleymcgraw.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/ashleymcgraw_logo.png" alt="...">
</a>
<a href="https://www.hok.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/hok_logo.png" alt="...">
</a>
</div>
<div class="card-group">
<a href="https://www.bvn.com.au/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/bvn_logo.png" alt="...">
</a>
<a href="https://smithgill.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/asgg_logo.png" alt="...">
</a>
<a href="https://www.kierantimberlake.com" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/kt_logo.png" alt="...">
</a>
<a href="https://henninglarsen.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/henning_larsen_logo.png" alt="...">
</a>
<a href="https://www.som.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/som_logo.png" alt="...">
</a>
<a href="https://www.burohappold.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/burohappold_logo.png" alt="...">
</a>
<a href="https://edsglobal.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/eds_logo.gif" alt="...">
</a>
</div>
<div class="card-group">
<a href="https://www.thorntontomasetti.com" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/thornton_tomasetti_logo.png" alt="...">
</a>
<a href="https://www.hksinc.com/hks-line/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/hksline_logo.png" alt="...">
</a>
<a href="https://www.payette.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/payette_logo.png" alt="...">
</a>
<a href="https://www.nbbj.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/nbbj_logo.png" alt="...">
</a>
<a href="https://www.meyersplus.com/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/meyersplus_logo.png" alt="...">
</a>
<div class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/mit_logo.png" alt="...">
</div>
<a href="http://sed.aaschool.ac.uk/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/aased_logo.jpg" alt="...">
</a>
</div>
<div class="card-group">
<div class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/upenn_logo.png" alt="...">
</div>
<a href="https://kadk.dk/en/kadk/" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/partner/kadk_logo.png" alt="...">
</a>
<a href="https://www.victoria.ac.nz/architecture" target="_blank" class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/partner/vuw_logo.png" alt="...">
</a>
<div class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/gsd_logo.png" alt="...">
</div>
<div class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/pratt_logo.png" alt="...">
</div>
<div class="card" style="display:block">
<img class="img-office-logo mx-auto my-auto" src="./assets/img/home/office/usc_logo.png" alt="...">
</div>
</div>
</div>
</section>
<!--|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||-->
<!-- Testimonial -->
<!--|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||-->
<section id="testimonial">
<div>
<div id="testimonial-slide-show" class="carousel slide container" data-ride="carousel" data-pause="hover" data-interval="10000">
<div class="carousel-inner" role="listbox">
<!-- start of a slide -->
<div class="carousel-item row active">
<!-- start of a person -->
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="testimonial_bubble">
<div class="row">
<div class="col-md-12 col-xs-12 testimonial_bubble_text">
<p>
<i class="fa fa-quote-left"></i>
Ladybug and Honeybee is a really powerful toolkit to handle 3D-geometry and simulation
parameters on a larger scale. It’s a big step forward in complex dynamic daylight simulation!
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_image">
<img src="./assets/img/home/testimonial/dietmar_transsolar.jpg" alt="..." />
</div>
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_affiliations">
<h5>Dietmar Geiselmann</h5>
<a href="https://www.transsolar.com" target="_blank">Transsolar</a>
</div>
</div>
</div>
</div>
<!-- end of the section for a person -->
</div>
<!-- end of a slide -->
<!-- start of a slide -->
<div class="carousel-item row">
<!-- start of a person -->
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="testimonial_bubble">
<div class="row">
<div class="col-md-12 col-xs-12 testimonial_bubble_text">
<p>
<i class="fa fa-quote-left"></i>
The Grasshopper insects – Ladybug, Honeybee, Dragonfly and Butterfly – are propagating
widely in academic and in professional design and planning communities, not as an infestation
but with as much delight and value as their biological namesakes. We make great use of them
at MIT!<br><br>
By seamlessly linking existing and highly capable performance assessment software (for
daylight, energy, airflow and thermal comfort) to design workflows, the insects are creating a
design ecosystem in which architects and planners can shape their efforts to promote the
highest levels of performance while satisfying all design objectives. Members of the design
community, trained to be creative and now empowered to develop evidence-based strategies,
will generate new concepts that will enrich the discourse about how best to serve both
mankind and the natural environment.<br><br>The open-source insects, described as a “passion
project” by one member of the core development group, will mutate into even more capable
forms with the aid of computationally capable users.
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_image">
<img src="./assets/img/home/testimonial/leslie_norford_mit.png" alt="..." />
</div>
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_affiliations">
<h5>Leslie Norford</h5>
<a href="https://architecture.mit.edu/faculty/les-norford" target="_blank">
Professor. Director of Building Technology Group, MIT
</a>
</div>
</div>
</div>
</div>
<!-- end of the section for a person -->
</div>
<!-- end of a slide -->
<!-- start of a slide -->
<div class="carousel-item row">
<!-- start of a person -->
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="testimonial_bubble">
<div class="row">
<div class="col-md-12 col-xs-12 testimonial_bubble_text">
<p>
<i class="fa fa-quote-left"></i>
Ladybug and Honeybee provide up to date analytical functions in an open didactic manner. We have just
started using them on our Masters programme, but I think our students are already becoming dedicated users.
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_image">
<img src="./assets/img/home/testimonial/simos_aa.jpg" alt="..." />
</div>
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_affiliations">
<h5>Simos Yannas</h5>
<a href="https://sed.aaschool.ac.uk/" target="_blank">Director of the MSc / MArch Sustainable Environmental Design, Architectural Association, London</a>
</div>
</div>
</div>
</div>
<!-- end of the section for a person -->
</div>
<!-- end of a slide -->
<!-- start of a slide -->
<div class="carousel-item row">
<!-- start of a person -->
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="testimonial_bubble">
<div class="row">
<div class="col-md-12 col-xs-12 testimonial_bubble_text">
<p>
<i class="fa fa-quote-left"></i>
Ladybug and Honeybee have not only assisted me in creating high quality visuals
and quick energy models, their rapid visual feedback has taught me how buildings
behave in response to many parameters, making me a better energy modeler and consultant.
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_image">
<img src="./assets/img/home/testimonial/stefan_ig.jpg" alt="..." />
</div>
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_affiliations">
<h5>Stefan Gracik</h5>
<a href="https://www.integralgroup.com/" target="_blank">Building Performance Engineer, Integral Group</a>
</div>
</div>
</div>
</div>
<!-- end of the section for a person -->
</div>
<!-- end of a slide -->
<!-- start of a slide -->
<div class="carousel-item row">
<!-- start of a person -->
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="testimonial_bubble">
<div class="row">
<div class="col-md-12 col-xs-12 testimonial_bubble_text">
<p>
<i class="fa fa-quote-left"></i>
Frankly without Ladybug and Honeybee I’d struggle to do my job. The suite of tools that the Ladybug team has developed
has given the industry so much more power in understanding how buildings and people interact with the climate which is
critical. The wealth and range of tools available enable the user to interrogate a huge number of scenarios and present
an equally large number of metrics. But the best part is that the team behind Ladybug are constantly developing and
listening. They believe in collaboration and always are on hand to help with any problems or develop further tools
to suit your needs.
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_image">
<img src="./assets/img/home/testimonial/duncan_tt.jpg" alt="..." />
</div>
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_affiliations">
<h5>Duncan Cox</h5>
<a href="https://www.ThorntonTomasetti.com" target="_blank">Senior Project Consultant, Thornton Tomasetti</a>
</div>
</div>
</div>
</div>
<!-- end of the section for a person -->
</div>
<!-- end of a slide -->
<!-- start of a slide -->
<div class="carousel-item row">
<!-- start of a person -->
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="testimonial_bubble">
<div class="row">
<div class="col-md-12 col-xs-12 testimonial_bubble_text">
<p>
<i class="fa fa-quote-left"></i>
Ladybug and Honeybee have opened a new and readily accessible dimension to the world of
integrated building performance simulation to a new generation of professionals. They have
become common language amongst architecture students, consultants and academics around the world,
uniting communities that until recently operated in silos. To think that until very recently I
had to rely on four or five different software packages to answer a building performance question!
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_image">
<img src="./assets/img/home/testimonial/alejandra_payette.jpg" alt="..." />
</div>
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_affiliations">
<h5>Alejandra Menchaca</h5>
<a href="https://www.payette.com" target="_blank">Senior Associate, Thornton Tomasetti</a>
</div>
</div>
</div>
</div>
<!-- end of the section for a person -->
</div>
<!-- end of a slide -->
<!-- start of a slide -->
<div class="carousel-item row">
<!-- start of a person -->
<div class="col-lg-12 col-md-12col-sm-12 col-xs-12">
<div class="testimonial_bubble">
<div class="row">
<div class="col-md-12 col-xs-12 testimonial_bubble_text">
<p>
<i class="fa fa-quote-left"></i>
I’ve used the Ladybug suite for years. It is the most versatile environmental toolkit that,
as it continues to develop and grow, enhances my design workflow. More importantly, its rapid
feedback loop enables project teams to design better buildings, landscapes, and interiors—responsibly.
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_image">
<img src="./assets/img/home/testimonial/stephen_nbbj.jpg" alt="..." />
</div>
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_affiliations">
<h5>Stephen P. Maher</h5>
<a href="https://www.nbbj.com" target="_blank">Designer / Studio Design Computation Leader, NBBJ</a>
</div>
</div>
</div>
</div>
<!-- end of the section for a person -->
</div>
<!-- end of a slide -->
<!-- start of a slide -->
<div class="carousel-item row">
<!-- start of a person -->
<div class="col-lg-12 col-md-12col-sm-12 col-xs-12">
<div class="testimonial_bubble">
<div class="row">
<div class="col-md-12 col-xs-12 testimonial_bubble_text">
<p>
<i class="fa fa-quote-left"></i>
Ladybug and Honeybee have not only dramatically improved early-stage interactions with clients,
they have allowed Arup to leverage parametric efficiencies in all stages of our modeling. From
quickly sketching through options at a project’s inception, to rapidly running through detailed
iterations later in a project’s lifecycle, these tools enrich the building design experience the
whole way through.
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_image">
<img src="./assets/img/home/testimonial/nick_arup.jpg" alt="..." />
</div>
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_affiliations">
<h5>Nick Rekstad</h5>
<a href="https://www.arup.com" target="_blank">Engineer | Mechanical, Arup</a>
</div>
</div>
</div>
</div>
<!-- end of the section for a person -->
</div>
<!-- end of a slide -->
<!-- start of a slide -->
<div class="carousel-item row">
<!-- start of a person -->
<div class="col-lg-12 col-md-12col-sm-12 col-xs-12">
<div class="testimonial_bubble">
<div class="row">
<div class="col-md-12 col-xs-12 testimonial_bubble_text">
<p>
<i class="fa fa-quote-left"></i>
The most valuable aspect of Ladybug and Honeybee is flexibility across
the lifespan of a project. From preliminary "optioneering" and discovery
through validation, the scalability of the platform allows continuity of
analysis to evolve with the increased project resolution.
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_image">
<img src="./assets/img/home/testimonial/david_grimshaw.jpg" alt="..." />
</div>
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_affiliations">
<h5>David Mans</h5>
<a href="https://grimshaw.global" target="_blank">Senior Computational Designer, Grimshaw Architects</a>
</div>
</div>
</div>
</div>
<!-- end of the section for a person -->
</div>
<!-- end of a slide -->
<!-- start of a slide -->
<div class="carousel-item row">
<!-- start of a person -->
<div class="col-lg-12 col-md-12col-sm-12 col-xs-12">
<div class="testimonial_bubble">
<div class="row">
<div class="col-md-12 col-xs-12 testimonial_bubble_text">
<p>
<i class="fa fa-quote-left"></i>
Ladybug has given us the tools we need as designers to gain an understanding of the environmental
consequences of our design decisions from the comfort of our preferred design platform, Rhino.
<br><br>
By virtue of its integration into Grasshopper, we can move beyond running analysis for its own sake
to parametrically drive downstream design decisions based on the values coming out of Ladybug’s suite
of simulation tools for climate analysis, solar radiation studies, daylighting, and more.
<br><br>
With its user-friendly interfaces, extensive documentation and examples, and friendly community support,
Ladybug appeals to modeling novices and advanced design computation specialists alike, helping us to reach
our goal of fully integrating environmental analysis and performance-driven design methods into our studio
design culture. We and many other practices are grateful to have benefited from the collective development
of this amazing open-source project!
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_image">
<img src="./assets/img/home/testimonial/brian_woodsbagot.jpg" alt="..." />
<img src="./assets/img/home/testimonial/andrew_woodsbagot.jpg" alt="..." />
</div>
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_affiliations">
<h5>Brian Ringley and Andrew Heumann</h5>
<a href="https://woodsbagot.com/" target="_blank">Previously Design Technology Specialists, Woods Bagot</a>
</div>
</div>
</div>
</div>
<!-- end of the section for a person -->
</div>
<!-- end of a slide -->
<!-- start of a slide -->
<div class="carousel-item row">
<!-- start of a person -->
<div class="col-lg-12 col-md-12col-sm-12 col-xs-12">
<div class="testimonial_bubble">
<div class="row">
<div class="col-md-12 col-xs-12 testimonial_bubble_text">
<p>
<i class="fa fa-quote-left"></i>
Ladybug and Honeybee sustainability analysis tools have become an integral part in library
of tools for the sustainability team at HOK . These tools provide an excellent capabilities
to perform quick early design as well as detailed simulation and communicate the results to
the design teams to effectively incorporate sustainability into the projects.
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_image">
<img src="./assets/img/home/testimonial/apoorv_hok.png" alt="..." />
</div>
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_affiliations">
<h5>Apoorv Goyal</h5>
<a href="https://www.hok.com/" target="_blank">Sustainable Design Specialist, HOK</a>
</div>
</div>
</div>
</div>
<!-- end of the section for a person -->
</div>
<!-- end of a slide -->
<!-- start of a slide -->
<div class="carousel-item row">
<!-- start of a person -->
<div class="col-lg-12 col-md-12col-sm-12 col-xs-12">
<div class="testimonial_bubble">
<div class="row">
<div class="col-md-12 col-xs-12 testimonial_bubble_text">
<p>
<i class="fa fa-quote-left"></i>
The modular nature of the Ladybug and Honeybee tool-sets provides a unique and powerful opportunity
to create both productivity and innovative workflows at a wide gambit of skill levels and complexity.
In short: it is one of the most powerful analysis tools in the industry because of its flexibility.
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_image">
<img src="./assets/img/home/testimonial/jeremy_perkinswill.jpg" alt="..." />
</div>
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_affiliations">
<h5>Jeremy Luebker</h5>
<a href="https://perkinswill.com/" target="_blank">Design Applications Tech., Perkins+Will</a>
</div>
</div>
</div>
</div>
<!-- end of the section for a person -->
</div>
<!-- end of a slide -->
<!-- start of a slide -->
<div class="carousel-item row">
<!-- start of a person -->
<div class="col-lg-12 col-md-12col-sm-12 col-xs-12">
<div class="testimonial_bubble">
<div class="row">
<div class="col-md-12 col-xs-12 testimonial_bubble_text">
<p>
<i class="fa fa-quote-left"></i>
The Ladybug family of tools provides not only top of the line, free plug-ins for environmental simulation,
but also an amazing community with support from users and developers. Being involved in this community
since the first insect was “born” in January 2013, I love the fact that we can all influence the tools and
help to make it better every day. With the Ladybug family, the future looks very bright!
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_image">
<img src="./assets/img/home/testimonial/michal_burohappold.jpg" alt="..." />
</div>
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_affiliations">
<h5>Michal Dengusiak</h5>
<a href="https://burohappold.com/" target="_blank">Senior MEP Engineer, BuroHappold Engineering</a>
</div>
</div>
</div>
</div>
<!-- end of the section for a person -->
</div>
<!-- end of a slide -->
<!-- start of a slide -->
<div class="carousel-item row">
<!-- start of a person -->
<div class="col-lg-12 col-md-12col-sm-12 col-xs-12">
<div class="testimonial_bubble">
<div class="row">
<div class="col-md-12 col-xs-12 testimonial_bubble_text">
<p>
<i class="fa fa-quote-left"></i>
A flexible and powerful set of tools to interface architectural design and engineering software.
The direct integration in the design team modeling environment of choice allows for easier and
faster interoperability; the open ended nature of the parametric components allows the development
of both general purpose and highly project specific workflows.
</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_image">
<img src="./assets/img/home/testimonial/giovanni_henn.jpg" alt="..." />
</div>
<div class="col-md-6 col-sm-6 col-6 testimonial_bubble_affiliations">
<h5>Giovanni Betti</h5>
<a href="https://henn.com/" target="_blank">Senior Associate / Head of Performance Based Design, HENN Architects</a>
</div>
</div>
</div>
</div>
<!-- end of the section for a person -->
</div>