forked from ladybug-tools/ladybug-tools.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathladybug.html
985 lines (965 loc) · 47.2 KB
/
ladybug.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ladybug Tools | Ladybug</title>
<meta name="description" content="ladybug tools - ladybug 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" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" rel="stylesheet" />
<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/styles.css" />
<link rel="stylesheet" href="assets/css/header.css" />
</head>
<body class="bg-faded">
<header id="first">
<div class="header-content">
<div class="container">
<div class="row">
<div class="col-md-4 col-12 inner">
<img src="assets/img/ladybug-large.png" style="width:325px;"/>
</div>
<div class="col-md-8 col-12 inner" >
<h1>Ladybug</h1>
<h6 class="wow fadeIn text-normal wow fadeIn">
Ladybug performs detailed analysis of climate data to produce customized, interactive visualizations
for environmentally-informed design.
</h6>
<!--<a rel="nofollow" class="page-scroll" href="#intro" title="Read more">
<i class="icon-sm fa fa-chevron-down fa-2x"></i>
</a> -->
</div>
</div>
</div>
</div>
</header>
<!--|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||-->
<!-- 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. On the main page logo, ladybug tools and products
scrolls down to the #products 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="./index.html">
<img src="assets/img/logo.png">
</a>
<a class="navbar-brand page-scroll" href="./index.html">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 dropdown">
<a class="nav-link dropdown-toggle" href="" id="servicesDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Services
</a>
<div class="dropdown-menu" aria-labelledby="servicesDropdown">
<a class="dropdown-item" href="./workshop/index.html">Workshops</a>
<a class="dropdown-item" href="./consulting.html">Consulting</a>
<a class="dropdown-item" href="./video-tutorial.html">On demand videos</a>
<a class="dropdown-item" href="./cloud.html">Cloud computing</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="" id="productsDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Tools
</a>
<div class="dropdown-menu" aria-labelledby="productsDropdown">
<a class="dropdown-item" href="./ladybug.html">Ladybug</a>
<a class="dropdown-item" href="./honeybee.html">Honeybee</a>
<a class="dropdown-item" href="./butterfly.html">Butterfly</a>
<a class="dropdown-item" href="./dragonfly.html">Dragonfly</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">
Education
</a>
<div class="dropdown-menu" aria-labelledby="educationDropdown">
<a class="dropdown-item" href="./resource.html">Resources</a>
<a class="dropdown-item" href="./publication.html">Publications</a>
<a class="dropdown-item" href="./presentation.html">Presentations</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="http://discourse.ladybug.tools" target="_blank">Forum</a>
</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="./about.html#faq">FAQ</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="" id="membershipDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Membership
</a>
<div class="dropdown-menu" aria-labelledby="membershipDropdown">
<a class="dropdown-item" href="./membership.html">Patron</a>
<a class="dropdown-item" href="./membership.html#industry">Industry partner</a>
<a class="dropdown-item" href="./membership.html#institution">Institutional partner</a>
<a class="dropdown-item" href="./membership.html#patronwall">Patrons wall</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?
</a>
</h1>
<hr class="primary">
<p class="section-subcontent">
Ladybug imports standard EnergyPlus Weather files (.EPW) into Grasshopper and Dynamo. It provides a
variety of 2D and 3D interactive climate graphics that support the decision-making process during
the early stages of design. Ladybug also supports the evaluation of initial design options through
solar radiation studies, view analyses, sunlight-hours modeling, and more.
Integration with <a href="https://en.wikipedia.org/wiki/Visual_programming_language" target="_blank">
visual programming environments</a> allows instantaneous feedback on design modifications and
a high degree of customization.
</p>
</br>
</div>
</div>
</div>
<!-- features small icons container -->
<div id="features-collection" class="container wow fadeInUp">
<div class="row">
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#charts">
<img class="feature-icon" src="assets/img/ladybug/3dchart.png" />
</a>
<h6 class="text-uppercase">Climate Data Plots</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#sunpath">
<img class="feature-icon" src="assets/img/ladybug/sunpath.png" />
</a>
<h6 class="text-uppercase">Sunpath Graphics</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#shadow">
<img class="feature-icon" src="assets/img/ladybug/shadow.png" />
</a>
<h6 class="text-uppercase">Shadow Studies</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#viewsun">
<img class="feature-icon" src="assets/img/ladybug/view_from_sun.png" />
</a>
<h6 class="text-uppercase">View from Sun</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#solaraccess">
<img class="feature-icon" src="assets/img/ladybug/solar_access.png" />
</a>
<h6 class="text-uppercase">Solar Access Studies</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#solarfanenv">
<img class="feature-icon" src="assets/img/ladybug/solar_envelope.png" />
</a>
<h6 class="text-uppercase">Solar Envelope</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#solarfanenv">
<img class="feature-icon" src="assets/img/ladybug/solar_fan.png" />
</a>
<h6 class="text-uppercase">Solar Fan</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#radiation">
<img class="feature-icon" src="assets/img/ladybug/radiation.png" />
</a>
<h6 class="text-uppercase">Radiation Studies</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#views">
<img class="feature-icon" src="assets/img/ladybug/view_studies.png" />
</a>
<h6 class="text-uppercase">View Studies</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#psych">
<img class="feature-icon" src="assets/img/ladybug/psychrometric.png" />
</a>
<h6 class="text-uppercase">Psychrometric Charts</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#adaptive">
<img class="feature-icon" src="assets/img/ladybug/adaptive_comfort.png" />
</a>
<h6 class="text-uppercase">Adaptive Comfort Charts</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#comfort">
<img class="feature-icon" src="assets/img/ladybug/outdoor_comfort.png" />
</a>
<h6 class="text-uppercase">Outdoor Comfort Studies</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#loval">
<img class="feature-icon" src="assets/img/ladybug/local_comfort.png" />
</a>
<h6 class="text-uppercase">Local Thermal Comfort Studies</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#shadebenefit">
<img class="feature-icon" src="assets/img/ladybug/shade_benefit.png" />
</a>
<h6 class="text-uppercase">Shade Benefit Analysis</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#shadedesign">
<img class="feature-icon" src="assets/img/ladybug/shade_design.png" />
</a>
<h6 class="text-uppercase">Generative Shade Design</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#raytracing">
<img class="feature-icon" src="assets/img/ladybug/raytracing.png" />
</a>
<h6 class="text-uppercase">Raytracing</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#shadowmask">
<img class="feature-icon" src="assets/img/ladybug/shadowmask.png" />
</a>
<h6 class="text-uppercase">Shadow Masks</h6>
</div>
<!-- end of an icon -->
<!-- start of an icon -->
<div class="col-md-2 col-sm-4 col-4 text-center">
<a class="page-scroll" href="#renewables">
<img class="feature-icon" src="assets/img/ladybug/renewables.png" />
</a>
<h6 class="text-uppercase">Renewables</h6>
</div>
<!-- end of an icon -->
</div>
</div>
</section>
<section id="download" class="bg-alt">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="section-title">
<a href="#download">
Getting Started
</a>
</h1>
<hr class="primary">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-12">
<a href="https://www.food4rhino.com/app/ladybug-tools" target="_blank">
<div class="btn btn-primary-outline btn-xl wow fadeInUp m-t-3 d-block">
<i class="fa fa-download"></i> Download<br />for Grasshopper</div>
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<a href="https://dynamopackages.com/" target="_blank">
<div class="btn btn-primary-outline btn-xl wow fadeInUp m-t-3 d-block">
<i class="fa fa-download"></i> Download<br />for Dynamo</div>
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<a href="https://github.com/mostaphaRoudsari/ladybug" target="_blank">
<div class="btn btn-primary-outline btn-xl wow fadeInUp m-t-3 d-block">
<i class="fa fa-github"></i> Source Code<br />Legacy</div>
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<a href="https://github.com/ladybug-tools/ladybug" target="_blank">
<div class="btn btn-primary-outline btn-xl wow fadeInUp m-t-3 d-block">
<i class="fa fa-github"></i> Source Code<br />[+]</div>
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<a href="https://github.com/ladybug-tools/ladybug-grasshopper" target="_blank">
<div class="btn btn-primary-outline btn-xl wow fadeInUp m-t-3 d-block">
<i class="fa fa-github"></i> Source Code<br />Grasshopper Plugin</div>
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<a href="https://github.com/ladybug-tools/ladybug-dynamo" target="_blank">
<div class="btn btn-primary-outline btn-xl wow fadeInUp m-t-3 d-block">
<i class="fa fa-github"></i> Source Code<br />Dynamo Plugin</div>
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<a href="https://www.gitbook.com/book/mostapharoudsari/ladybug-primer/details" target="_blank">
<div class="btn btn-primary-outline btn-xl wow fadeInUp m-t-3 d-block">
<i class="fa fa-pencil"></i> Ladybug<br />Primer</div>
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<a href="https://hydrashare.github.io/hydra/?keywords=LBExampleFiles" target="_blank">
<div class="btn btn-primary-outline btn-xl wow fadeInUp m-t-3 d-block">
<i class="fa fa-plus"></i> Example<br />Files</div>
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<a href="./resource.html#ladybug">
<div class="btn btn-primary-outline btn-xl wow fadeInUp m-t-3 d-block">
<i class="fa fa-book"></i> Learning<br />Resources</div>
</a>
</div>
</div>
</section>
<section id="features">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="section-title">
<a href="#features">
Features
</a>
</h1>
<hr class="primary">
</div>
</div>
</div>
<div class="container wow fadeInUp">
<!-- start of the feature -->
<div class="row" id="charts">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="assets/img/ladybug/features/gradients.jpg">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#charts">
Climate Data Plots
</a>
</h4>
<p class="card-text">Interpret data through a variety of 2d and 3d charts.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=chart" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="sunpath">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="assets/img/ladybug/features/sunpathgraphic.png">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#sunpath">
Sunpath Graphics
</a>
</h4>
<p class="card-text">Produce meaningful solar diagrams.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=sunpath" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="shadow">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="https://github.com/mostaphaRoudsari/hydra_1/raw/master/Shadow_Range_analysis/Shadow_Range_analysis_Rhino.png">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#shadow">
Shadow Studies
</a>
</h4>
<p class="card-text">Understand where the sun is shining.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=shadow" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="viewsun">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="https://github.com/mostaphaRoudsari/hydra_1/raw/master/Map_Annual_Comfort_on_Sunpath/Map_Annual_Comfort_on_Sunpath_Rhino.png">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#viewsun">
View From Sun
</a>
</h4>
<p class="card-text">Make realtime animations of what sees the sun at different times of the day.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=sun" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="solaraccess">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="assets/img/ladybug/features/solarAccess.JPG">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#solaraccess">
Solar Access Studies
</a>
</h4>
<p class="card-text">See where and when the sun shines.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=solar" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="solarfanenv">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="assets/img/ladybug/features/solarfan.jpg">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#solarfanenv">
Solar Fan and Envelope
</a>
</h4>
<p class="card-text">Find buildable volumes to maintain solar access.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=envelope" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="radiation">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="https://raw.githubusercontent.com/mostaphaRoudsari/hydra_1/master/Cumulative_Radiation_Analysis_w_Ladybug/Cumulative_Radiation_Analysis_w_Ladybug_Rhino.png">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#radiation">
Radiation Studies
</a>
</h4>
<p class="card-text">Quickly quantify solar energy falling on your geometry.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=radiation" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="views">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="assets/img/ladybug/features/viewstudy.png">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#views">
View Studies
</a>
</h4>
<p class="card-text">Measure the visual connection to the outdoors.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=views" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="psych">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="https://github.com/chriswmackey/hydra_2/raw/master/Psychrometric_Chart/Psychrometric_Chart_Rhino.png">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#psych">
Psychrometric Charts
</a>
</h4>
<p class="card-text">Customize your familiar thermal comfort graphics.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=psychrometric" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="adaptive">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="https://github.com/chriswmackey/hydra_2/raw/master/Adaptive_Comfort_Chart/Adaptive_Comfort_Chart_Rhino.png">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#adaptive">
Adaptive Comfort Charts
</a>
</h4>
<p class="card-text">Evaluate the thermal comfort of your passive designs.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=adaptive" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="comfort">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="https://github.com/chriswmackey/hydra_2/raw/master/Urban_Microclimate_-_Simple_Spatial_UTCI/Urban_Microclimate_-_Simple_Spatial_UTCI_Rhino.png">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#comfort">
Outdoor Thermal Comfort
</a>
</h4>
<p class="card-text">Account for sky heat exchange and use the latest outdoor comfort models.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=outdoor" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="local">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="https://raw.githubusercontent.com/chriswmackey/hydra_2/master/Accounting_for_Solar_Radiation_in_Comfort/Accounting_for_Solar_Radiation_in_Comfort_Rhino.png">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#local">
Local Thermal Comfort
</a>
</h4>
<p class="card-text">Model radiant asymmetry, downdraft discomfort, and more.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=ankle" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="shadebenefit">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="https://github.com/chriswmackey/hydra_2/raw/master/Outdoor_Comfort_Shade_Benefit/Outdoor_Comfort_Shade_Benefit_Rhino.png">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#shadebenefit">
Shade Benefit Analysis
</a>
</h4>
<p class="card-text">Visualize the regions of a shade that are most are helpful and harmful to thermal comfort.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=benefit" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="shadedesign">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="assets/img/ladybug/features/shadebenefit.png">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#shadedesign">
Generative Shade Design
</a>
</h4>
<p class="card-text">Build shades based on the regions that are most helpful.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=shade" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="raytracing">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="https://raw.githubusercontent.com/mostaphaRoudsari/hydra_1/master/Ray_tracing/Ray_tracing_Rhino.png">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#raytracing">
Ray tracing
</a>
</h4>
<p class="card-text">Visualize the bouncing of light through geometry.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=ray" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="shadowmask">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="assets/img/ladybug/features/radbenefitmask.jpg">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#shadowmask">
Shadow Masks
</a>
</h4>
<p class="card-text">See the portions of sky blocked by shades and context</p>
<a href="https://hydrashare.github.io/hydra/?keywords=mask" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
<!-- start of the feature -->
<div class="row" id="renewables">
<div class="container py-3">
<div class="card padding-top-30">
<div class="row white">
<div class="col-md-6">
<img class="w-100" src="assets/img/ladybug/features/renewables.jpg">
</div>
<div class="col-md-6 px-3">
<div class="card-block px-3">
<h4 class="card-title">
<a href="#renewables">
Renewables
</a>
</h4>
<p class="card-text"> Estimate energy harvested from photovoltaics and solar hot water.</p>
<a href="https://hydrashare.github.io/hydra/?keywords=renewables" class="btn btn-primary" target="_blank">Check for examples</a>
<li class="list-inline-item float-right">
<a rel="nofollow" class="page-scroll" href="#features-collection" title="Up">
<i class="icon-sm fa fa-chevron-up fa-2x"></i>
</a>
</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of the feature -->
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-6 col-sm-3 column">
<h6 class="text-uppercase text-muted">About</h6>
<ul class="list-unstyled">
<li><a href="./about.html">Our Story</a></li>
<li><a href="./about.html#team">Team</a></li>
<li><a href="http://discourse.ladybug.tools" target="_blank">Forum</a></li>
</ul>
</div>
<div class="col-6 col-sm-3 column">
<h6 class="text-uppercase text-muted">Services</h6>
<ul class="list-unstyled">
<li><a href="./consulting.html">Consulting</a></li>
<li><a href="./workshop/index.html">Workshop</a></li>
<li><a href="./video-tutorial.html">Video tutorial</a></li>
<li><a href="./cloud.html">Cloud computing</a></li>
</ul>
</div>
<div class="col-6 col-sm-3 column">
<h6 class="text-uppercase text-muted">Members</h6>
<ul class="list-unstyled">
<li><a href="./membership.html">Patron</a></li>
<li><a href="./membership.html#industry">Industry partner</a></li>
<li><a href="./membership.html#institution">Institutional partner</a></li>
<li><a href="./membership.html#patronwall">Patrons wall</a></li>
</ul>
</div>
<div class="col-6 col-sm-3 column">
<h6 class="text-uppercase text-muted">Contact Us</h6>
<ul class="list-unstyled">
<li class="text-muted small"><a href="mailto:[email protected]?subject=[ladybug-tools] Hello!">[email protected]</a></li>
</ul>
<ul class="list-inline">
<li class="list-inline-item">
<a rel="nofollow" href="https://www.twitter.com/ladybug_tools" title="Twitter" target="_blank">
<i class="icon-sm fa fa-twitter fa-2x"></i>
</a>
</li>
<li class="list-inline-item">
<a rel="nofollow" href="https://www.facebook.com/ladybug-tools" title="Facebook" target="_blank">
<i class="icon-sm fa fa-facebook fa-2x"></i>
</a>
</li>
<li class="list-inline-item">
<a rel="nofollow" href="https://www.github.com/ladybug-tools" title="GitHub" target="_blank">
<i class="icon-sm fa fa-github fa-2x"></i>
</a>
</li>
</ul>
<ul class="list-unstyled">
<li class="text-muted small">
<a href="https://www.patreon.com/bePatron?u=6230588" data-patreon-widget-type="become-patron-button" target="_blank"><img class="img-fluid d-block patron-button" src="assets/img/patreon_button.png" /></a>
</li>
</ul>
</div>
</div>
<br>
<span class="float-left text-muted small">©2017-2020 Ladybug Tools LLC</span>
</div>
</footer>
<!--scripts loaded here-->
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js"
integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh"
crossorigin="anonymous"></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js"
integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.2.0/js/tether.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.js"></script>
<script src="assets/js/scripts.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-100351402-1', 'auto');
ga('send', 'pageview');
</script>
</body>