-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·721 lines (650 loc) · 37.7 KB
/
index.html
File metadata and controls
executable file
·721 lines (650 loc) · 37.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="HydroCouple Documentation">
<meta name="author" content="Caleb Buahin">
<title>HydroCouple</title>
<!--My icon gye nyame-->
<link href="img/hydrocouple.png" rel="icon">
<!-- Bootstrap Core CSS - Uses Bootswatch Flatly Theme: http://bootswatch.com/flatly/ -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!--Academic Icons-->
<link href="css/academicons.css" rel="stylesheet">
<link href="css/academicons.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/freelancer.css" rel="stylesheet">
<link href="css/citation.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet"
type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#page-top">HydroCouple</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li class="page-scroll">
<a href="#tools">Tools</a>
</li>
<li class="page-scroll">
<a href="#components">Components</a>
</li>
<li class="page-scroll">
<a href="#publications">Publications</a>
</li>
<li class="page-scroll">
<a href="#support">Support</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="row">
<div class="intro-text">
<!--<span class="name">What is HydroCouple ?</span>
<hr class="star-light">-->
<span class="skills">
<p>
The HydroCouple project is a cross platform component-based modeling framework for
integrated modeling in the environmental and earth systems modeling field. It is
developed using C++ and its interface definitions aro better support simulations
on HPC infrastructure, standard geospatial dataset formats, and customizable data exchange
workflows.
</p>
<p>
Join our <a href="https://github.com/hydrocouple">GitHub repository</a>
to contribute and use the growing list of compliant model components.
</p>
<p>
<a href="HydroCouple/" class="btn btn-lg btn-outline">
<i class="fa"></i>Explore HydroCouple's Interface Definitions
</a>
</p>
</span>
</div>
</div>
</div>
</header>
<!-- Tools -->
<section id="tools">
<div class="container">
<div>
<div class="col-sm-12 text-center">
<h2>Software Stack</h2>
<hr>
</div>
</div>
<div class="row">
<div class="col-md-6 portfolio-item">
<h4 class="modal-descp">HydroCouple Composer</h4>
<a href="#toolsModal2" class="portfolio-link" data-toggle="modal">
<img src="img/components/hydrocouplecomposer.png" class="img-responsive" alt="">
</a>
</div>
<div class="col-md-6 portfolio-item">
<H4 class="modal-descp">HydroCouple SDK</H4>
<a href="#toolsModal1" class="portfolio-link" data-toggle="modal">
<img src="img/hydrocouple.png" class="img-responsive" alt="">
</a>
</div>
</div>
</div>
</section>
<div class="portfolio-modal modal fade" id="toolsModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>HydroCoupleComposer</h2>
<hr>
<img src="img/components/hydrocouplecomposer.png" class="img-responsive img-centered"
alt="">
<p>
This project is a GUI for coupling HydroCouple model components together.
</p>
<ul class="list-inline item-details">
<li>Source:
<strong>
<a href="https://github.com/HydroCouple/HydroCoupleComposer">Code</a>
</strong>
</li>
<li>Installers:
<strong>
<a href="https://github.com/HydroCouple/HydroCoupleComposer/releases">Windows,
Mac OS X, Linux</a>
</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal">
<i class="fa fa-times"></i> Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Tools Modal -->
<div class="portfolio-modal modal fade" id="toolsModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>HydroCouple Sofware Development Kit</h2>
<hr>
<img src="img/hydrocouple.png" class="img-responsive img-centered" alt="">
<p>
<a href="https://github.com/HydroCouple">HydroCouple</a> is a C++ component-based
modeling framework specification and SDK that can
be used to develop components for integrated modeling.
</p>
<ul class="list-inline item-details">
<li>Source:
<strong>
<a href="https://github.com/HydroCouple/HydroCoupleSDK"> Software Development
Kit</a>
</strong>
</li>
<li>Platform:
<strong>
<a href="https://github.com/HydroCouple/HydroCoupleComposer/releases">Windows,
Mac OS X, Linux</a>
</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal">
<i class="fa fa-times"></i> Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Components -->
<section id="components">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Components</h2>
<hr>
</div>
</div>
<div class="row">
<div class="col-sm-3 portfolio-item">
<a href="#componentModal1" class="portfolio-link" data-toggle="modal">
<p class="modal-descp">EPA SWMM Model Component</p>
<img src="img/components/swmmcomponent.png" class="img-responsive" alt="" height="400" width="600">
</a>
</div>
<div class="col-sm-3 portfolio-item">
<a href="#componentModal2" class="portfolio-link" data-toggle="modal">
<p class="modal-descp">The Finite Volume Hydrologic Model Component</p>
<img src="img/components/fvhmcomponent.png" class="img-responsive" alt="" height="400" width="600">
</a>
</div>
<div class="col-sm-3 portfolio-item">
<a href="#componentModal3" class="portfolio-link" data-toggle="modal">
<p class="modal-descp">The Triangle Model Component</p>
<img src="img/components/triangle.png" class="img-responsive" alt="" height="400" width="600">
</a>
</div>
<div class="col-sm-3 portfolio-item">
<a href="#componentModal4" class="portfolio-link" data-toggle="modal">
<p class="modal-descp">Temporal Interpolation AdaptedOutput Factory Component</p>
<img src="img/components/adaptedoutputfactory.png" class="img-responsive" alt="" height="400" width="600">
</a>
</div>
</div>
<div class="row">
<div class="col-sm-3 portfolio-item">
<a href="#componentModal5" class="portfolio-link" data-toggle="modal">
<p class="modal-descp">Loop Driven Data Exchange Workflow Component</p>
<img src="img/components/workflow.png" class="img-responsive" alt="" height="400" width="600">
</a>
</div>
<div class="col-sm-3 portfolio-item">
<a href="#componentModal6" class="portfolio-link" data-toggle="modal">
<p class="modal-descp">Groundwater Component</p>
<img src="img/components/gwcomponenticon.png" class="img-responsive" alt="" height="400" width="600">
</a>
</div>
<div class="col-sm-3 portfolio-item">
<a href="#componentModal7" class="portfolio-link" data-toggle="modal">
<p class="modal-descp">Hyporheic Transient Zone Storage Component</p>
<img src="img/components/htscomponenticon.png" class="img-responsive" alt="" height="400" width="600">
</a>
</div>
<div class="col-sm-3 portfolio-item">
<a href="#componentModal8" class="portfolio-link" data-toggle="modal">
<p class="modal-descp">Radiative Heat Exchange Component</p>
<img src="img/components/htscomponenticon.png" class="img-responsive" alt="" height="400" width="600">
</a>
</div>
</div>
<div class="row">
<div class="col-sm-3 portfolio-item">
<a href="#componentModal9" class="portfolio-link" data-toggle="modal">
<p class="modal-descp">Channel Solute and Heat Transport Component</p>
<img src="img/components/htscomponenticon.png" class="img-responsive" alt="" height="400" width="600">
</a>
</div>
</div>
</div>
</section>
<!-- Components Modal -->
<div class="portfolio-modal modal fade" id="componentModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>HydroCouple SWMM Component</h2>
<hr>
<img src="img/components/swmmcomponent.png" class="img-responsive img-centered" alt="">
<p>A HydroCouple component for EPA's Stormwater Modeling System (SWMM)</p>
<ul class="list-inline item-details">
<li>Source:
<strong>
<a href="https://github.com/HydroCouple/SWMMComponent">Code</a>
</strong>
</li>
<li>Platforms:
<strong>
<a href="">Windows, Mac OS X, Linux</a>
</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal">
<i class="fa fa-times"></i> Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="componentModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2> The Finite Volume Hydrologic Model Component</h2>
<hr>
<img src="img/components/fvhmcomponent.png" class="img-responsive img-centered" alt="">
<p>A finite volume based hydrologic model</p>
<ul class="list-inline item-details">
<li>Source:
<strong>
<a href="https://github.com/HydroCouple/FVHMComponent">Code</a>
</strong>
</li>
<li>Platforms:
<strong>
<a href="">Windows, Mac OS X, Linux</a>
</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal">
<i class="fa fa-times"></i> Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="componentModal3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2> The Triangle Model Component</h2>
<hr>
<img src="img/components/triangle.png" class="img-responsive img-centered" alt="">
<p>A point triangulation model component developed from the Triangle code by Jonathan
Shewchuk</p>
<ul class="list-inline item-details">
<li>Source:
<strong>
<a href="https://github.com/HydroCouple/TriangleComponent">Code</a>
</strong>
</li>
<li>Platforms:
<strong>
<a href="">Windows, Mac OS X, Linux</a>
</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal">
<i class="fa fa-times"></i> Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="componentModal4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>A Temporal Interpolation AdaptedOutputFactory Component</h2>
<hr>
<img src="img/components/adaptedoutputfactory.png" class="img-responsive img-centered"
alt="">
<p>A temporal interpolation adapted output factory component</p>
<ul class="list-inline item-details">
<li>Source:
<strong>
<a
href="https://github.com/HydroCouple/TemporalInterpAdaptedOutputFactoryComponent">Code</a>
</strong>
</li>
<li>Platforms:
<strong>
<a href="">Windows, Mac OS X, Linux</a>
</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal">
<i class="fa fa-times"></i> Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="componentModal5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Loop Driven Data Exchange Workflow Component</h2>
<hr>
<img src="img/components/workflow.png" class="img-responsive img-centered" alt="">
<p>A loop driven data exchange workflow component for time marchine modeling</p>
<ul class="list-inline item-details">
<li>Source:
<strong>
<a href="https://github.com/HydroCouple/LoopDrivenWorkflowComponent">Code</a>
</strong>
</li>
<li>Platforms:
<strong>
<a href="">Windows, Mac OS X, Linux</a>
</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal">
<i class="fa fa-times"></i> Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="componentModal6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Groundwater Component</h2>
<hr>
<img src="img/components/gwcomponenticon.png" class="img-responsive img-centered" alt="">
<p>A vertically averaged groundwater component developed for estimating groundwater surfacewater exchanges</p>
<ul class="list-inline item-details">
<li>Source:
<strong>
<a href="https://github.com/HydroCouple/GWComponent">Code</a>
</strong>
</li>
<li>Platforms:
<strong>
<a href="">Windows, Mac OS X, Linux</a>
</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal">
<i class="fa fa-times"></i> Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- About Section -->
<section id="publications">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Publications</h2>
<hr>
</div>
</div>
<div>
<div class="csl-bib-body" style="line-height: 1.35; margin-left: 2em; text-indent:-2em;">
<div class="csl-entry">Mihalevich, B.A., Neilson, B.T., Buahin, C.A., 2022. Evaluation of the ERA5-Land Reanalysis Data Set for Process-Based River Temperature Modeling Over Data Sparse and Topographically Complex Regions. Water Resources Research 58, e2021WR031294. <a href="https://doi.org/10.1029/2021WR031294">https://doi.org/10.1029/2021WR031294</a></div>
<span class="Z3988" title="url_ver=Z39.88-2004&ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fzotero.org%3A2&rft_id=info%3Adoi%2F10.1029%2F2021WR031294&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.atitle=Evaluation%20of%20the%20ERA5-Land%20Reanalysis%20Data%20Set%20for%20Process-Based%20River%20Temperature%20Modeling%20Over%20Data%20Sparse%20and%20Topographically%20Complex%20Regions&rft.jtitle=Water%20Resources%20Research&rft.volume=58&rft.issue=7&rft.aufirst=Bryce%20A.&rft.aulast=Mihalevich&rft.au=Bryce%20A.%20Mihalevich&rft.au=Bethany%20T.%20Neilson&rft.au=Caleb%20A.%20Buahin&rft.date=2022&rft.pages=e2021WR031294&rft.issn=1944-7973&rft.language=en"></span>
<div class="csl-entry">Leach, J.A., Moore, R.D., Laudon, H., Buahin, C.A., Neilson, B.T., 2022. Do headwater lakes moderate downstream temperature response to forest harvesting? Illustrating opportunities and obstacles associated with virtual experiments. Hydrological Processes 36, e14593. <a href="https://doi.org/10.1002/hyp.14593">https://doi.org/10.1002/hyp.14593</a></div>
<span class="Z3988" title="url_ver=Z39.88-2004&ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fzotero.org%3A2&rft_id=info%3Adoi%2F10.1002%2Fhyp.14593&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.atitle=Do%20headwater%20lakes%20moderate%20downstream%20temperature%20response%20to%20forest%20harvesting%3F%20Illustrating%20opportunities%20and%20obstacles%20associated%20with%20virtual%20experiments&rft.jtitle=Hydrological%20Processes&rft.volume=36&rft.issue=6&rft.aufirst=Jason%20A.&rft.aulast=Leach&rft.au=Jason%20A.%20Leach&rft.au=R.%20Dan%20Moore&rft.au=Hjalmar%20Laudon&rft.au=Caleb%20A.%20Buahin&rft.au=Bethany%20T.%20Neilson&rft.date=2022&rft.pages=e14593&rft.issn=1099-1085&rft.language=en"></span>
<div class="csl-entry">Leach, J.A., Neilson, B.T., Buahin, C.A., Moore, R.D., Laudon, H., 2021. Lake Outflow and Hillslope Lateral Inflows Dictate Thermal Regimes of Forested Streams Draining Small Lakes. Water Resources Research 57, e2020WR028136. <a href="https://doi.org/10.1029/2020WR028136">https://doi.org/10.1029/2020WR028136</a></div>
<span class="Z3988" title="url_ver=Z39.88-2004&ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fzotero.org%3A2&rft_id=info%3Adoi%2F10.1029%2F2020WR028136&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.atitle=Lake%20Outflow%20and%20Hillslope%20Lateral%20Inflows%20Dictate%20Thermal%20Regimes%20of%20Forested%20Streams%20Draining%20Small%20Lakes&rft.jtitle=Water%20Resources%20Research&rft.volume=57&rft.issue=6&rft.aufirst=Jason%20A.&rft.aulast=Leach&rft.au=Jason%20A.%20Leach&rft.au=Bethany%20T.%20Neilson&rft.au=Caleb%20A.%20Buahin&rft.au=R.%20Dan%20Moore&rft.au=Hjalmar%20Laudon&rft.date=2021&rft.pages=e2020WR028136&rft.issn=1944-7973&rft.language=en"></span>
<div class="csl-entry">Mihalevich, B.A., Neilson, B.T., Buahin, C.A., Yackulic, C.B., Schmidt, J.C., 2020. Water Temperature Controls for Regulated Canyon-Bound Rivers. Water Resources Research 56, e2020WR027566. <a href="https://doi.org/10.1029/2020WR027566">https://doi.org/10.1029/2020WR027566</a></div>
<span class="Z3988" title="url_ver=Z39.88-2004&ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fzotero.org%3A2&rft_id=info%3Adoi%2Fhttps%3A%2F%2Fdoi.org%2F10.1029%2F2020WR027566&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.atitle=Water%20Temperature%20Controls%20for%20Regulated%20Canyon-Bound%20Rivers&rft.jtitle=Water%20Resources%20Research&rft.volume=56&rft.issue=12&rft.aufirst=Bryce%20A.&rft.aulast=Mihalevich&rft.au=Bryce%20A.%20Mihalevich&rft.au=Bethany%20T.%20Neilson&rft.au=Caleb%20A.%20Buahin&rft.au=Charles%20B.%20Yackulic&rft.au=John%20C.%20Schmidt&rft.date=2020&rft.pages=e2020WR027566&rft.issn=1944-7973&rft.language=en"></span>
<div class="csl-entry">Buahin, C.A., Horsburgh, J.S., Neilson, B.T., 2019. Parallel multi-objective calibration of a component-based river temperature model. Environmental Modelling & Software 116, 57–71. <a href="https://doi.org/10.1016/j.envsoft.2019.02.012">https://doi.org/10.1016/j.envsoft.2019.02.012</a></div>
<span class="Z3988" title="url_ver=Z39.88-2004&ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fzotero.org%3A2&rft_id=info%3Adoi%2F10.1016%2Fj.envsoft.2019.02.012&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.atitle=Parallel%20multi-objective%20calibration%20of%20a%20component-based%20river%20temperature%20model&rft.jtitle=Environmental%20Modelling%20%26%20Software&rft.volume=116&rft.aufirst=Caleb%20A.&rft.aulast=Buahin&rft.au=Caleb%20A.%20Buahin&rft.au=Jeffery%20S.%20Horsburgh&rft.au=Bethany%20T.%20Neilson&rft.date=2019-06&rft.pages=57-71&rft.spage=57&rft.epage=71&rft.issn=13648152&rft.language=en"></span>
<div class="csl-entry">Buahin, C.A., Horsburgh, J.S., 2018. Advancing the Open Modeling Interface (OpenMI) for integrated water resources modeling. Environmental Modelling & Software 108, 133–153. <a href="https://doi.org/10.1016/j.envsoft.2018.07.015">https://doi.org/10.1016/j.envsoft.2018.07.015</a></div>
<span class="Z3988" title="url_ver=Z39.88-2004&ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fzotero.org%3A2&rft_id=info%3Adoi%2F10.1016%2Fj.envsoft.2018.07.015&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.atitle=Advancing%20the%20Open%20Modeling%20Interface%20(OpenMI)%20for%20integrated%20water%20resources%20modeling&rft.jtitle=Environmental%20Modelling%20%26%20Software&rft.stitle=Environmental%20Modelling%20%26%20Software&rft.volume=108&rft.aufirst=Caleb%20A.&rft.aulast=Buahin&rft.au=Caleb%20A.%20Buahin&rft.au=Jeffery%20S.%20Horsburgh&rft.date=2018-10-01&rft.pages=133-153&rft.spage=133&rft.epage=153&rft.issn=1364-8152"></span>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="support">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Support</h2>
<hr>
</div>
</div>
<div>
<p>
The material presented here was supported by National Science Foundation
<a href="http://iutahepscor.org/">EPSCoR Grant IIA 1208732</a> awarded to Utah State University as
part of the State of Utah EPSCoR Research
Infrastructure Improvement Award. Any opinions, findings, and conclusions or recommendations
expressed
in this material are those of the author(s) and do not necessarily reflect the views of the National
Science Foundation.
</p>
</div>
<!--<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<form name="sentMessage" id="contactForm" novalidate>
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
<label>Name</label>
<input type="text" class="form-control" placeholder="Name" id="name" required data-validation-required-message="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
<label>Email Address</label>
<input type="email" class="form-control" placeholder="Email Address" id="email" required data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
<label>Phone Number</label>
<input type="tel" class="form-control" placeholder="Phone Number" id="phone" required data-validation-required-message="Please enter your phone number.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
<label>Message</label>
<textarea rows="5" class="form-control" placeholder="Message" id="message" required data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<br>
<div id="success"></div>
<div class="row">
<div class="form-group col-xs-12">
<button type="submit" class="btn btn-success btn-lg">Send</button>
</div>
</div>
</form>
</div>
</div>-->
</div>
</section>
<!-- Footer -->
<footer class="text-center">
<div class="footer-above">
<div class="container">
<div class="row">
<div class="footer-col col-md-12">
<h3>Around the Web</h3>
<ul class="list-inline">
<li>
<a href="mailto:caleb.buahin@gmail.com" class="btn-social btn-outline">
<i class="fa fa-fw fa-envelope-o"></i>
</a>
</li>
<li>
<a href="https://github.com/hydrocouple" class="btn-social btn-outline">
<i class="fa fa-fw fa-github"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer-below">
<div class="container">
<div class="row">
<div class="col-lg-12">
Copyright © HydroCouple 2014-2022
</div>
</div>
</div>
</div>
</footer>
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes) -->
<div class="scroll-top page-scroll visible-xs visible-sm">
<a class="btn btn-primary" href="#page-top">
<i class="fa fa-chevron-up"></i>
</a>
</div>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="js/classie.js"></script>
<script src="js/cbpAnimatedHeader.js"></script>
<!-- Contact Form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/freelancer.js"></script>
</body>
</html>