-
Notifications
You must be signed in to change notification settings - Fork 4
/
ReleaseNotes.html
1008 lines (866 loc) · 75.6 KB
/
ReleaseNotes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Enzo Project -- Release Notes</title>
<link rel="shortcut icon" href="favicon.png" />
<meta name="description" content="">
<meta name="author" content="">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="assets/js/google-code-prettify/prettify.js"></script>
<script>$(function () { prettyPrint() })</script>
<script src="js/bootstrap.min.js"></script>
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="#">Enzo</a>
<ul class="nav">
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#" >Quick Links <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="ReleaseNotes.html">Release Notes</a></li>
<li><a href="doc/">Current Documentation</a></li>
<li><a href="https://bitbucket.org/enzo/enzo-dev">Code Repository</a></li>
<li><a href="BootCamp.html">Enzo Boot Camp</a></li>
<li><a href="irc.html">IRC</a></li>
</ul>
</li>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#gettingenzo">Get Enzo</a></li>
<li><a href="index.html#help">Help!</a></li>
<li><a href="index.html#developing">Development</a></li>
<li><a href="index.html#community">Community</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Enzo Docs <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="docs/latest/">Development Version</a></li>
<li><a href="docs/2.5/">Version 2.5</a></li>
<li><a href="docs/2.4/">Version 2.4</a></li>
<li><a href="docs/2.3/">Version 2.3</a></li>
<li><a href="docs/2.2/">Version 2.2</a></li>
<li><a href="docs/2.1/">Version 2.1</a></li>
<li><a href="docs/2.0/">Version 2.0</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div class="container">
<section id="home">
<div class="hero-unit hero-border">
<a name="home" class="anchor"><h1>The Enzo Project</h1></a>
</div>
</section>
<section id="releasenotes">
<div class="page-header">
<a name="releasenotes" class="anchor"><h1>Release Notes</h1></a>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#Enzo26">
<h2>Enzo 2.6</h2>
</a>
</div>
<div id="Enzo26" class="accordion-body collapse in">
<div class="accordion-inner">
<p><i>Release Date – August 2, 2019</i></p>
<ul class="nav nav-tabs">
<li class="active"><a href="#releasenotes26" data-toggle="tab">Release Notes</a></li>
<li><a href="#changelog26" data-toggle="tab">Changelog</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active " id="releasenotes26">
<p> We are pleased to announce the release of Version 2.6 of
the Enzo code. This is a periodic release that
includes all changes committed to the Enzo
BitBucket repository since March 2016. This
release contains some new features and a number of
enhancements and bugfixes. </p>
<p> Our biggest change has been our transition from Mercurial
to Git and a corresponding change from bitbucket to github. All
future updates will only be found in our new github repository
(https://github.com/enzo-project/enzo-dev).</p>
<p> New features include: The long awaited Active Particle
framework; Fuzzy Dark Matter solver and corresponding test problems;
subgrid-scale turbulence model and corresponding test problem;
magnetic supernova feedback for simple star particles. </p>
<p> There have been a number of enhancements to the hydro, MHD,
radiation transport, and star particle routines, and a variety
of performance enhancements to the same set of packages. </p>
<p> There have also been a number of significant bugfixes, including
several memory leaks. </p>
<p> We urge all users to update to the latest version if they are
using Enzo 2.5 or earlier. While one can obtain the release by
downloading a tar file, we strongly encourage all users to use Enzo
from a clone of the git repository, which will facilitate
reproducible work with the code. </p>
<p> For more information about Enzo, see https://enzo-project.org/. </p>
<p> For the release notes and changelog, see
https://enzo-project.org/ReleaseNotes.html and the CHANGELOG
file in the root directory of the enzo-dev repository. </p>
</div>
<div class="tab-pane" id="changelog26">
<ul>
<li>New Feature: Conversion from Mercurial+BitBucket to Git+GitHub</li>
<li>New Feature: Automated testing on GitHub with CircleCI (GH <a href="https://github.com/enzo-project/enzo-dev/pull/55">PR #55</a>)</li>
<li>New Feature: Fuzzy dark matter evolution module + test problems (GH <a href="https://github.com/enzo-project/enzo-dev/pull/61">PR #61</a>)</li>
<li>New Feature: Subgrid-scale turbulence modeling framework (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/407/add-subgrid-scale-sgs-turbulence-model/diff">PR #407</a>)</li>
<li>New Feature: Magnetic supernova feedback (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/346/magnetic-supernova-feedback/diff">PR #346</a>)</li>
<li>New Feature: Active particle framework + docs (GH <a href="https://github.com/enzo-project/enzo-dev/pull/57">PR #57</a>, <a href="https://github.com/enzo-project/enzo-dev/pull/83">PR #83</a>, <a href="https://github.com/enzo-project/enzo-dev/pull/85">PR #85</a>)</li>
<li>Enhancement: Two new types of refinement regions: "Must refine" and "cooling-based refinement" regions, both of which move. (GH <a href="https://github.com/enzo-project/enzo-dev/pull/59">PR #59</a>)</li>
<li>Enhancement: Star particle mass ramp added (GH <a href="https://github.com/enzo-project/enzo-dev/pull/68">PR #68</a>)</li>
<li>Enhancement: Zeldovich Pancake includes dark matter particles (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/435">PR #435</a>)</li>
<li>Enhancement: Python scripts in repository upgraded to Python 3 (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/351/ensure-we-can-build-enzo-if-python-is/diff">PR #351</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/363/updated-enzo-and-test-suite-to-be/diff">PR #363</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/437/brings-performance-tools-up-to-py3-and/diff">PR #437</a>)</li>
<li>Enhancement: All physical constants consolidated into a single header file (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/417/moving-all-local-constants-to-those-in/diff">PR #417</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/428/include-phys_constantsh-last-to-avoid/diff">428</a>, )</li>
<li>Enhancement: Cosmology simulations added to test suite (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/419/add-cosmology-simulation-to-test-suite/diff">PR #419</a>)</li>
<li>Enhancement: Test suite provides more information about running and crashing tests (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/339/make-verbose-test-output-print-details/diff">PR #339</a>)</li>
<li>Enhancement: Particle splitter has many new features (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/426/updates-to-particle-splitter/diff">PR #426</a>)</li>
<li>Enhancement: Updated MPI error handler to MPI 2+ standards (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/430/updating-the-mpi-error-handler-to-mpi-2/diff">PR #430</a>)</li>
<li>Enhancement: Additional must-refine particle capabilities: cell de-refinement (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/424/add-new-must-refine-particle-option/diff">PR #424</a>), ability for more complex conditionals (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/369/improving-mustrefineparticle-flagging/diff">PR #369</a>)</li>
<li>Enhancement: Adjust Grackle UV background treatment at high redshift (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/423/adjust-grackle-uvb-off-drop-parameters-if/diff">PR #423</a>)</li>
<li>Enhancement: H- and H2II photodetachment added to radiation transport and transport chemistry network and tests (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/390/hminus-component-added-to-rt/diff">PR #390</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/401/hminus-component-added-to-rt/diff">PR #401</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/409/optically-thin-radiation-and/diff">PR 409</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/410/bugfix-initialize-hm-and-h2ii-photo-fields/diff">PR #410</a>)</li>
<li>Enhancement: EvolveLevel and EvolveLevel_RK combined (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/364/combine-evolvelevel-and-evolvelevel_rk/diff">PR #364</a>)</li>
<li>Enhancement: Problem initializers now all use AllocatedGrids (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/404/update-problem-initializers-to-use/diff">PR #404</a>)</li>
<li>Enhancement: All test problems now use power-of-two refinement factor (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/340/make-all-test-problems-use-a-power-of-two/diff">PR #340</a>)</li>
<li>Enhancement: Expansion parameter/redshift now use tables, enabling non-standard cosmologies (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/393/use-a-table-for-redshift-time-calculations/diff">PR #393</a>)</li>
<li>Enhancement: Added stellar wind option to CollapseTest (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/388/i-added-a-small-routine-that-adds-stellar/diff">PR #388</a>)</li>
<li>Enhancement: Expanded feedback options in idealized SMBH and elliptical galaxy simulations (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/387/add-feedback-from-old-stars-in-idealized/diff">PR #387</a>)</li>
<li>Enhancement: Grackle updated to use H2 self-shielding approximation (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/349/updates-to-use-grackle-h2-self-shielding/diff">PR #349</a>)</li>
<li>Enhancement: Grackle supports user-supplied redshift in non-cosmological simulations (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/334/redshift-for-grackle-uvb-in-non/diff">PR #334</a>)</li>
<li>Enhancement: Updated Grackle interface to support Grackle 3.x (Grackle 2.x support discontinued) (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/347/updates-to-grackle-fields-and-api-for/diff">PR #347</a>)</li>
<li>Enhancement: Test suite updated to work with yt-3 (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/304/updating-the-test-suite-to-work-with-yt-3/diff">PR #304</a>)</li>
<li>Enhancement: Particles supported in GalaxySimulation when using DiskGravity (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/336/particle-support-for-diskgravity/diff">PR #336</a>)</li>
<li>Enhancement: Improved documentation:</li>
<ul>
<li>Dedner MHD (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/415/dedner-docs-and-branding/diff">PR #415</a>)</li>
<li>Enzo flowchart update (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/418/enzo-flowchart-fix-for-documentation/diff">PR #418</a>)</li>
<li>Recombined Enzo parameter list and expansion of physics/analysis capabilities section (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/412/documentation-updates/diff">PR #412</a>)</li>
<li>Added MUSIC IC description (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/376/changes-to-the-users-guide-added-music/diff">PR #376</a>) </li>
<li>Updated Quick-start guide (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/376/changes-to-the-users-guide-added-music/diff">PR #376</a>)</li>
<li>Updated FAQ including table of contents (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/377/in-docs-added-to-faq-and-added-faq-to/diff">PR #377</a>)</li>
<li>Updated parameter descriptions (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/367/updating-docs-and-removing-unused-params/diff">PR #367</a>)</li>
<li>Updated tutorial (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/372/small-changes-to-tutorial-in-documentation/diff">PR #372</a>)</li>
</ul>
<li>Bugfix: Fixes to map RadiationRedshift* parameters to Grackle (GH <a href="https://github.com/enzo-project/enzo-dev/pull/81">PR #81</a>)</li>
<li>Bugfix: Small tweak to hierarchy file reader - patch for pre-AP simulations (GH <a href="https://github.com/enzo-project/enzo-dev/pull/80">PR #80</a>)</li>
<li>Bugfix: Documentation updated to reflect hg->git conversion (GH <a href="https://github.com/enzo-project/enzo-dev/pull/63">PR #63</a>)</li>
<li>Bugfix: Makefile hg->git conversion (GH <a href="https://github.com/enzo-project/enzo-dev/pull/58">PR #58</a>)</li>
<li>Bugfix: Test that boundary condition files are correctly read (GH <a href="https://github.com/enzo-project/enzo-dev/pull/58">PR #58</a>)</li>
<li>Bugfix:Magnetic supernovae function with mixed precision (GH <a href="https://github.com/enzo-project/enzo-dev/pull/58">PR #58</a>)</li>
<li>Bugfix: Libconfig removed (GH <a href="https://github.com/enzo-project/enzo-dev/pull/67">PR #67</a>)</li>
<li>Bugfix: 128-bit particles compilation errors fixed (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/433/bugfix-compilation-and-restart-errors-with/diff">PR #433</a>), 32-bit compilation errors fixed (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/416/rolled-back-minor-changes-to-allow/diff">PR #416</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/425/bugfix-fix-issue-with-particles-32-compile/diff">PR #425</a>)</li>
<li>Bugfix: Memory leak in magnetic supernovae (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/421/fixing-memory-leak-in-magnetic-supernova/diff">PR #421</a>)</li>
<li>Bugfix: Misc. small runtime bug fixes (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/427/bugfix-ray-tracing-minor-bugfixes/diff">PR #427</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/429/misc-bugfixes/diff">PR #429</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/382/prevent-baryon-density-from-being-zero-in/diff">PR #382</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/355/solution-to-use-divergence-cleaning/diff">PR #355</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/353/obscure-undefined-behavior-bugfix/diff">PR #353</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/348/syntax-error-in/diff">PR #348</a>)</li>
<li>Bugfix: Cooling time calculation should include ghost zones (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/414/updated-cooling-time-calculation-to-also/diff">PR #414</a>)</li>
<li>Bugfix: Unused parameters removed (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/408/removing-unused-arguments-from-star-maker/diff">PR #408</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/385/removing-unused-parameter-making-sure/diff">PR #385</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/378/removing-more-unused-parameters/diff">PR #378</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/367/updating-docs-and-removing-unused-params/diff">PR #367</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/342/removing-unused-parameters/diff">PR #342</a>)</li>
<li>Bugfix: ErrorException.h cleanup (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/411/cleanups-for-errorexceptionsh/diff">PR #411</a>)</li>
<li>Bugfix: MHD-RK memory fix (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/405/mhd_rk-memory-fix/diff">PR #405</a>)</li>
<li>Bugfix: Grackle + radiation transport timestep fix (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/391/bugfix-correcting-the-timestep-sent-to/diff">PR #391</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/354/bugfix-correctly-set/diff">PR #354</a>)</li>
<li>Bugfix: Many small compilation bugs fixed (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/380/remove-unnecessary-cast-to-avoid-a/diff">PR #380</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/332/fixed-small-bug-relating-to-parentheses-in/diff">PR #332</a>, <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/328/add-missing-errorexceptionsh-includes-to/diff">PR #328</a>)</li>
<li>Bugfix: Removal of many uncompiled files (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/386/remove-uncompiled-files-from-src-enzo/diff">PR #386</a>)</li>
<li>Bugfix: CT MHD color species advection fixed (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/361/update-mhdct-species-colour-advection/diff">PR #361</a>)</li>
<li>Bugfix: HDF5 1.10 compatibility fix (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/371/bugfix-compatibility-fix-for-hdf5-110/diff">PR #371</a>)</li>
<li>Bugfix: Fix Ray tracing load balance crash (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/370/bugfix-ray-tracing-load-balancing-crash/diff">PR #370</a>)</li>
<li>Bugfix: Conduction timestep properly saved (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/341/fixed-conduction-timestep-calculation/diff">PR #341</a>)</li>
<li>Bugfix: Fixed rarefaction fan calculation in flux_twoshock.F (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/338/bug-fix-in-rarefaction-fan-in/diff">PR #338</a>)</li>
<li>Bugfix: Density floor in PPM solver (euler.F) changed from hard-coded to using pre-existing SmallRho parameter (BB <a href="https://bitbucket.org/enzo/enzo-dev/pull-requests/333/bug-fix-of-density-floor-in-ppm-solver/diff">PR #333</a>)</li>
</ul>
</div>
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#Enzo25">
<h2>Enzo 2.5</h2>
</a>
</div>
<div id="Enzo25" class="accordion-body collapse in">
<div class="accordion-inner">
<p><i>Release Date – March 10, 2016</i></p>
<ul class="nav nav-tabs">
<li class="active"><a href="#releasenotes25" data-toggle="tab">Release Notes</a></li>
<li><a href="#changelog25" data-toggle="tab">Changelog</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active " id="releasenotes25">
<p> We are pleased to announce the release of Version 2.5 of
the Enzo code. This is a periodic release that
includes all changes committed to the Enzo
BitBucket repository since August 2014. This
release contains some new features and a number of
enhancements and bugfixes. </p>
<p> New features include: support for Version 2.0 of the
Grackle chemistry and cooling library; refinement by Must Refine
particles and metal mass; a cosmic ray fluid including pressure,
diffusion, and injection for the ZEUS solver; Kinetic stellar
feedback; power-of-two memory allocation to decrease fragmentation;
and many new problem types. </p>
<p> There have been a number of
enhancements to the hydro, MHD, radiation transport, and star
particle routines, and a variety of performance enhancements to the
same set of packages. </p>
<p> There have also been a number of
significant bugfixes, including several that may increase the
stability and efficiency of production multi-physics simulations.
</p>
<p> We urge all users to update to the
latest version if they are using Enzo 2.4 or earlier. While one can
obtain the release by downloading a tar file, we strongly encourage all
users to use enzo from a clone of the mercurial repository, which will
facilitate reproducible work with the code. </p>
</div>
<div class="tab-pane" id="changelog25">
<ul>
<li> New Feature: AGORA isolated galaxy problem and related Goldbaum,
Forbes & Krumholz feedback routines (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/253">PR #253</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/295">PR #295</a>)</li>
<li> New Feature: Grackle 2.0 support (<a href =
"https://bitbucket.org/enzo/enzo-dev/pull-request/260">PR
#260</a>)</li>
<li> New Feature: Support for several new test problems for MHD (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/244">PR #244</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/299">PR #299</a>)</li>
<li> New Feature: Implementation of stochastic forcing in turbulence
problems (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/251">PR #251</a>)</li>
<li> New Feature: Refinement by metal mass (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/288">PR #288</a>)</li>
<li> New Feature: Must Refine particles (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/309">PR #309</a>)</li>
<li> New Feature: New 2D test problems for hydro and MHD (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/305">PR #305</a>)</li>
<li> New Feature: Power-of-2 memory allocation (enhances memory
performance) (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/297">PR #297</a>)</li>
<li> New Feature: Cosmic ray pressure/diffusion/injection (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/300">PR #300</a>)</li>
<li> New Feature: Simpson et al. Kinetic stellar feedback (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/277">PR #277</a>)</li>
<li> Enhancement: HDF5 hierarchy output no longer default due to code slowdown
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/245">PR #245</a>)</li>
<li> Enhancement: New Stampede makefiles (intel and gnu compilers) (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/246">PR
#246</a>)</li>
<li> Enhancement: Ignore grid hydro parameters on restart - use global
values (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/250">PR #250</a>)</li>
<li> Enhancement: FLD solver speedup and scaling
improvement (<a href =
"https://bitbucket.org/enzo/enzo-dev/pull-request/254">PR
#254</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/264">PR #264</a>)</li>
<li> Enhancement: RNG streams now reproducible in parallel (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/262">PR #262</a>)</li>
<li> Enhancement: Updated default value of solar metallicity to be
consistent with Cloudy (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/272">PR #272</a>)</li>
<li> Enhancement: Minor performance improvements (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/273">PR #273</a>)</li>
<li> Enhancement: hydro_rk solver speedups (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/286">PR #286</a>)</li>
<li> Enhancement: Misc. small fixes/updates from John Wise regarding star
particles and sink particles (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/287">PR #287</a>)</li>
<li> Enhancement: Updates to Enzo's inline FOF halo finder (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/283">PR #283</a>)</li>
<li> Enhancement: Can now calculate dust temperature from command line (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/282">PR #282</a>)</li>
<li> Enhancement: Ray tracing has several optimizations and new features,
most of which promote speed and/or stability
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/294">PR #294</a>)</li>
<li> Enhancement: Enzo native chemistry solver updated with timestep
limiter, H2 self-shielding, non-cosmological redshift (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/289">PR #289</a>)</li>
<li> Enhancement: CollapseTest and PhotonTest updated for correctness and
flexibility (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/298">PR #298</a>)</li>
<li> Enhancement: Pop III star star cluster formation and feedback
improvements and new features (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/293">PR #293</a>)</li>
<li> Enhancement: UniformGravity support in MUSCL (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/310">PR #310</a>)</li>
<li> Enhancement: UngridTranspose=2 is now default (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request313/">PR #313</a>)</li>
<li> Enhancement: GalaxySimulation enhancements (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/300">PR #300</a>)</li>
<li> Enhancement: MHD CT cosmology update (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/318">PR #318</a>)</li>
<li> Bugfix: Misc. MHD bug fixes and cleanup (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/243">PR #243</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/257">PR #257</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/265">PR #265</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/269">PR #269</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/271">PR #271</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/278">PR #278</a>)</li>
<li> Bugfix: Makefile updates and fixes (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/256">PR #256</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/285">PR #285</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/301">PR #301</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/302">PR #302</a>)</li>
<li> Bugfix: Typo in TurbulenceSimulation (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/248">PR #248</a>)</li>
<li> Bugfix: Doc cleanup (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/252">PR #252</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/259">PR #259</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/263">PR #263</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/267">PR #267</a>)</li>
<li> Bugfix: Fixed "output cooling time only" and "output smoothed dm field
only" options (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/255">PR #255</a>)</li>
<li> Bugfix: Fixed MaximumGravityRefinementLevel to work with SiblingList
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/238">PR #238</a>)</li>
<li> Bugfix: CommunicationLoadBalanceGrids fix for MinProc (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/258">PR #258</a>)</li>
<li> Bugfix: Small stability/reproducibility fixes (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/261">PR #261</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/266">PR #266</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/275">PR #275</a>)</li>
<li> Bugfix: Removed excessive unnecessary code warnings (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/268">PR #268</a>)</li>
<li> Bugfix: Added missing input file in CoolingTest_Grackle (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/279">PR #279</a>)</li>
<li> Bugfix: Fix to Grid::CheckForExternalReflections doing right side
incorrectly (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/274">PR #274</a>)</li>
<li> Bugfix: Enzo-performance module hang in parallel (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/296">PR #296</a>)</li>
<li> Bugfix: MUSCL pressure support for EOS=0 corrected (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/281">PR #281</a>)</li>
<li> Bugfix: Color density floor to PPM reconstruction (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/284">PR #284</a>)</li>
<li> Bugfix: ReadParameterFile memory leak (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/306">PR #306</a>)</li>
<li> Bugfix: StochasticForcing works with all solvers (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/308">PR #308</a>)</li>
<li> Bugfix: Compilation problem with new-problem-types-yes (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/307">PR #307</a>)</li>
<li> Bugfix: WriteParameterFile doesn't write correct TimeActionTime (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/312">PR #312</a>)</li>
<li> Bugfix: LoadBalancing when all grids have equal work (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/311">PR #311</a>)</li>
<li> Bugfix: Flux correction for metal fields (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/314">PR #314</a>)</li>
<li> Bugfix: Minor bugs in gFLDSplit and gFLDProblem solvers (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/317">PR #317</a>)</li>
<li> Bugfix: mismatched new/delete in Grid_ProjectSolutionToParentGrid (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/319">PR #319</a>)</li>
<li> Bugfix: float/double mismatches (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/320">PR #320</a>)</li>
<li> Bugfix: compiler warnings found with -Werror (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/321">PR #321</a>)</li>
<li> Bugfix: 2D simulation segfault (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/322">PR #322</a>)</li>
<li> Bugfix: Enhancing compilibility w/photon-no (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/323">PR #323</a>)</li>
<li> Bugfix: Checking of cosmic ray fluid parameteters upon startup (<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/325">PR #325</a>)</li>
</ul>
</div>
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#Enzo24">
<h2>Enzo 2.4</h2>
</a>
</div>
<div id="Enzo24" class="accordion-body collapse">
<div class="accordion-inner">
<p><i>Release Date – Aug. 8, 2014</i></p>
<ul class="nav nav-tabs">
<li class="active"><a href="#releasenotes24" data-toggle="tab">Release Notes</a></li>
<li><a href="#changelog24" data-toggle="tab">Changelog</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="releasenotes24">
<p>
We are pleased to announce the release of version 2.4 of the Enzo
code. This is a periodic release that includes all changes
committed to the Enzo BitBucket repository since July 2013. This
release contains some new features and a number of enhancements and
bugfixes.
</p>
<p>
Enzo now has bindings to version 1.0 of the grackle chemistry and
cooling library. Grackle is based on Enzo's own cooling and
chemistry code and includes updated rate and chemistry tables, as
well a number of enhancements and new features that are not
available in Enzo's native chemistry and cooling modules.
</p>
<p>
Enzo's solvers and physics modules have also seen improvements,
including updates for the GPU MHD solver, the FLD solver, and the
MHD-CT solver, the Jeans pressure floor, the Cen & Ostriker star
particle, tracer particles, and particle splitting.
</p>
<p>
There have also been a number of infrastructure improvements,
including a new progress meter script (which allows the user to
monitor simulations during runtime), updates for geometric
refinement regions and the shear refinement criterion, improved
control over the frequency of hierarchy rebuilds, updates for test
problem initialization (which is now more memory efficient), and
improvements to the GalaxySimulation, KelvinHelmholtz, and
CosmologySimulation problem types. There is also a new rotating
turbulent sphere problem type.
</p>
<p>
There have also been a number of significant bugfixes, including
several that may increase the stability and efficiency of production
multi-physics simulations.
</p>
<p>
We urge all users to update to the latest version if they are using
Enzo 2.3 or earlier. While one can obtain the release by
downloading a tar file, we strong encourage all users to use enzo
from a clone of the mercurial repository, which will facilitate
reproducible work with the code.
</p>
</div>
<div class="tab-pane" id="changelog24">
<ul>
<li> New Feature: A progess meter script has been added to the bin directory
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/233"> PR #233</a>)
<li> New Feature: Added a rotating turbulent sphere test problem
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/206"> PR #206</a>)
<li> New Feature: Hierarchy rebuilds can now be controlled dynamically
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/196"> PR #196</a>)
<li> New Feature: Grackle chemistry and cooling
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/194"> PR #194</a>)
<li> Enhancement: Conversion factors from code units to CGS units are now written with increased precision
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/239"> PR #239</a>)
<li> Enhancement: Improved compatibility for cosmology simulations that include
FLD, chemistry, and cooling.
(
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/230"> PR #230</a>,
)
<li> Enhancement: Significant updates for the unigrid FLD solver
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/216"> PR #216</a>)
<li> Enhancement: Particle splitting has been reimplemented with an improved
algorithm
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/188"> PR #188</a>)
<li> Enhancement: CosmologySimulation can now be run with MHDCT
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/223"> PR #223</a>)
<li> Enahncement: PPM simulations that use MinimumPressureSupport now use an
improved algorithm for runs with cooling
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/220"> PR #220</a>)
<li> Enhancement: Added a parameter that allows fully manual control over the root
grid decomposition
(
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/219"> PR #219</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/226"> PR #226</a>,
)
<li> Enhancement: Documentation on how to add a new BaryonField has been added.
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/221"> PR #221</a>)
<li> Enhancement: The galaxy simulation can now be run without using comoving
coordinates
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/204"> PR #204</a>)
<li> Enhancement: Added a timestep-independent star particle creation mechanism
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/197"> PR #197</a>)
<li> Enhancement: Improvements to the tracer particle implementation
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/193"> PR 193</a>)
<li> Enhancement: Improvements to the Kelvin-Helmholtz test problem
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/192"> PR #192</a>)
<li> Enhancement: Buffer zones on processor boundaries will now be properly
flagged for refinement.
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/190"> PR #190</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/218"> PR #218</a>)
<li> Enhancement: The shear refinement criterion is now compatible with more
simulation types
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/189"> PR #189</a>)
<li> Enhancement: AccelerationBoundary is now compatible with point source gravity
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/117"> PR #117</a>)
<li> Enhancement: Test problems will generate more efficient hierarchies during
problem initialization
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/182"> PR #182</a>)
<li> Enhancement: Improvements for the CPU and GPU Dedner MHD solvers
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/177"> PR #177</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/200"> PR #200</a>)
<li> Enhancement: New refine region mechanics
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/155"> PR #155</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/172"> PR #172</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/227"> PR #227</a>)
<li> Enhancement: MHDCT works with outflow boundary conditions
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/176"> PR #176</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/198"> PR #198</a>)
<li> Bugfix: Fixed an issue with the emissivity field in the FLD module having
incorrect unit
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/241"> PR #241</a>)
<li> Bugfix: Compilation issues for the FLD module in 32-bit mode have been
resolved
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/240"> PR #240</a>)
<li> Bugfix: The internal energy field is no longer made conservative during flux
correction if cooling is turned on
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/228"> PR #228</a>)
<li> Bugfix: Fixed an issue where incorrect fluxes were being generated for
the internal energy in simulations that used flux correction. This
may improve stability in some applications.
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/217"> PR #217</a>)
<li> Bugfix: FinalRedshift is no longer derived from StopTime, preventing
desynchronization between these parameters
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/236"> PR #236</a>)
<li> Bugfix: The FLD radiative transfer parameter file is now only written by
the root processor
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/235"> PR #235</a>)
<li> Bugfix: Fixed issues with mpgrafic and P-GroupFinder
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/215"> PR #215</a>)
<li> Bugfix: Fixed issues with transport of color fields at refinement boundaries.
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/199"> PR #199</a>)
<li> Bugfix: Remove AddParticleAttributes, which sometimes causes particle
metadata to be incorrectly zeroed out
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/208"> PR #208</a>)
<li> Bugfix: The -g command line option now works as expected
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/207"> PR #207</a>)
<li> Bugfix: A buggy MIN macro was causing ComputeTimestep to be called twice
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/200"> PR #200</a>)
<li> Bugfix: Fix for simulations that use ExternalGravity but no self gravity
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/201"> PR #201</a>)
<li> Bugfix: Inits now uses increased precision when writing subgrid locations.
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/195"> PR #195</a>)
<li> Bugfix: Use Agg as the plotting backend for performance_tools
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/192"> PR #192</a>)
<li> Bugfix: AddFeedbackSphere is now compatible with the Zeus hydro solver
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/187"> PR #187</a>)
<li> Bugfix: Fixed issues MHD test problems
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/185"> PR #185</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/186"> PR #186</a>)
<li> Bugfix: Fixes for uninitialized memory errors reported by valgrind
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/184"> PR #181</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/184"> PR #184</a>)
<li> Bugfix: Fixed issues with compiling in mixed precision mode
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/181"> PR #181</a>)
<li> Bugfix: Fixed an issue with NumberOfOutputsBeforeExit functionality
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/179"> PR #179</a>)
<li> Bugfix: Fixed an issue with header include order in the RK solvers
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/178"> PR #178</a>)
<li> Bugfix: MagneticField is not set to NULL after being deleted
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/175"> PR #175</a>)
<li> Bugfix: Fixed an issue that caused the build to fail if hg is not
present
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/174"> PR #174</a>)
<li> Bugfix: Fixed Haardt & Madau 2012 radiation field rates
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/171"> PR #171</a>)
</ul>
</div>
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#Enzo23">
<h2>Enzo 2.3</h2>
</a>
</div>
<div id="Enzo23" class="accordion-body collapse">
<div class="accordion-inner">
<p><i>Release Date – July. 10, 2013</i></p>
<ul class="nav nav-tabs">
<li class="active"><a href="#releasenotes23" data-toggle="tab">Release Notes</a></li>
<li><a href="#changelog23" data-toggle="tab">Changelog</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="releasenotes23">
We are pleased to announce the joint release of Enzo 2.3 and the
Enzo method paper, entitled "Enzo: An Adaptive Mesh Refinement
Code for Astrophysics." Enzo 2.3 brings some new physics packages,
improvements to the code, and some needed bug fixes. The method
paper describes in detail the algorithms used for every physics
package presented in this release, along with test problems and a
description of the community development practices that have made
the code so successful.
The new physics modules in Enzo 2.3 include a constrained transport
MHD method (MHDCT) and a new radiation background described by Haardt &
Madau 2012, a PPM implementation for CUDA, and improvements to
the CUDA MHD solver. Code improvements include MPI performance
timers and improvements to the inline interface between Enzo and
the analysis package yt, and several new problem types, including
a cluster potential problem, a magnetic reconnection problem that
utilizes the new MHDCT solver, and a particle orbit problem. Bug fixes
to the gravity, chemistry, and radiation solvers are also
included. <br>
The components of this release can be found by following these
links:
<ul>
<li> The paper <a href = http://arxiv.org/abs/1307.2265> can be found here</a>
<li> The code to reproduce the tests can be found at
<a href https://bitbucket.org/enzo/enzo-method-paper> here</a><br>
<li> Enzo 2.3 can be found <a href =
https://bitbucket.org/enzo/enzo-stable> here</a>
<li> The continually updated development branch
can be found <a
href=https://bitbucket.org/enzo/enzo-dev>here</a> <br>
<li> A full list of changes can be found <a href = http://enzo-project.org/ReleaseNotes.html> here</a>
<li> Documentation can be found at <a href = enzo-project.org> enzo-project.org </a>, along with links
to the above.
</ul>
</div>
<div class="tab-pane" id="changelog23">
<ul>
<li> New Feature: MHDCT, divergence free MHD
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/121/mhdct"> PR #121</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/156"> PR #156</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/160"> PR #160</a>)
<li> New Feature: New Haard & Madau 2012 radiation background
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/143"> PR #143</a>)
<li> New Feature: Second derivative refinement criteria
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/164"> PR #164</a>)
<li> New Feature: New TestOrbit problem for orbiting point masses
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/152"> PR #152</a>)
<li> New Feature: New magnetic reconnection test
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/121"> PR #121</a>)
<li> New Feature: CUDA PPM solver
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/78"> PR #78</a>)
<li> New Feature: Supermassive black hole feedback
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/119"> PR #119</a>)
<li> Enhancement: New additions to the RefineRegion mechanics
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/155"> PR #155</a>)
<li> Enhancement: Improvements to the gravity solver
(
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/120"> PR #120</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/124"> PR #124</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/131"> PR #131</a>
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/163"> PR #163</a>,
)
<li> Enhancement: Improvements to the CUDA MHD solver
<li> Enhancement: New output mechanism for debugging difficult code
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/103"> PR #103</a>)
<li> Enhancement: Updates to documentation
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/94"> PR #94</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/104"> PR #104</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/140"> PR #140</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/141"> PR #141</a>)
<li> Enhancement: Performance timers for communication
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/139"> PR #139</a>)
<li> Enhancement: Updates to test problems, test runner, and inits
(
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/87"> PR #87</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/89"> PR #89</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/91"> PR #91</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/93"> PR #93</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/95"> PR #95</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/96"> PR #96</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/97"> PR #97</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/98"> PR #98</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/99"> PR #99</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/100"> PR #100</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/101"> PR #101</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/102"> PR #102</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/107"> PR #107</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/108"> PR #108</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/110"> PR #110</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/113"> PR #113</a>
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/123"> PR #123</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/132"> PR #132</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/133"> PR #133</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/149"> PR #149</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/146"> PR #146</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/151"> PR #151</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/154"> PR #154</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/161"> PR #161</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/167"> PR #167</a>,
)
<li> Enhancement: Improvements to the enzo/yt inline interface
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/131"> PR #131</a>)
<li> Enhancement: NumberOfGhostZones is now a run-time parameter
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/84"> PR #84</a>)
<li> Bugfix: OutputOnDensity fixes
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/122"> PR #122</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/136"> PR #136</a>)
<li> Bugfix: Cooling fixes
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/126"> PR #126</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/136"> PR #136</a>)
<li> Bugfix: Ray tracer bugfixes for isolaced BCs, constant dt, memory bug
(
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/144"> PR #144</a>,
<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/158"> PR #158</a>)
<li> Bugfix: Timestep bug fixed for multispecies
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/153"> PR #153</a>)
<li> Bugfix: Sink particle fix
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/129"> PR #129</a>)
<li> Bugfix: Set acceleration boundary updates
(<a href = "https://bitbucket.org/enzo/enzo-dev/pull-request/88"> PR #88</a>)
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="accordion" id="accordion2">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#Enzo22">
<h2>Enzo 2.2</h2>
</a>
</div>
<div id="Enzo22" class="accordion-body collapse">
<div class="accordion-inner">
<p><i>Release Date – Nov. 30, 2012</i></p>
<ul class="nav nav-tabs">
<li class="active"><a href="#releasenotes22" data-toggle="tab">Release Notes</a></li>
<li><a href="#changelog22" data-toggle="tab">Changelog</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="releasenotes22">
<p>We are proud to announce the public release of Enzo version 2.2. This intermediate release contains a few new physics modules, reorganized and updated documentation, revamped answer testing, improvements to code infrastructure, as well as numerous bug fixes. In a little bit more detail:</p>
<ol>
<li>
<b>New physics capabilities</b> — (a) Thermal and chemical feedback from Type Ia supernovae, with mass loss and luminosity fits provided by K. Nagamine; (b) H<sub>2</sub>-regulated star formation, in which the star formation rate is proportional to the density of molecular hydrogen (determined from Krumholz, McKee, & Tumlinson 2009), rather than total gas density.
</li>
<li>
<b>Upgrades to the Enzo Answer Testing Framework</b> — Includes both functional improvements and vastly improved documentation. The results of two test suites ("quick" and "push") have been uploaded to an Amazon Cloud instance, allowing users to compare to an Enzo Community "gold standard". Alternatively, answer testing can also be done by comparing to locally generated results.
</li>
<li>
<b>Improved Documentation</b> — (a) Descriptions of 175 previously undocumented parameters; (b) Parameters have been broken up into groups; (c) Brief explanations of the functionality provided by (most) Enzo source files; (d) Description of the new Enzo performance timers; (e) Examples of how to debug Enzo.
</li>
<li>
<b>Code infrastructure improvement</b> — All fortran routines have been modified to explicitly specify the type at compile time, eliminating the need for compiler flags to ensure 64-bit precision.
</li>
<li>
<b>Timing and performance measurement and plotting tools</b> — Support for simple, lightweight measurements for the timing and performance of Enzo. This allows one to examine which functions are using the majority of the simulation runtime, and how this varies across multiple processors.
</li>
</ol>
<br>
<p>With this release we continue our efforts to consolidate The Enzo Project's web presence, with the goal of lowering the barrier to entry for new users and easing further code development:</p>
<ul>
<li>
Enzo's main webpage continues to be <a href="http://enzo-project.org">http://enzo-project.org</a>. Links and information can be found here for both developers and general users.
</li>
<li>
Both <a href="https://bitbucket.org/enzo/enzo-stable">stable</a> and <a href="https://bitbucket.org/enzo/enzo-dev">development</a> versions of the Enzo code are now hosted on Bitbucket.
</li>
<li>
For news and updates please follow our google+ page: <a href="https://plus.google.com/115923030596894217717">The Enzo Project</a>
</li>
</ul>
</div>
<div class="tab-pane" id="changelog22">
<ul>
<li> New Feature: Supernova Ia feedback (no PR) </li>
<li> New Feature: H<sub>2</sub>-regulated star formation prescription (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/41">PR #41</a>) </li>
<li> New Feature: Light-weight timing and performance measuring tool (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/35">PR #35</a>)</li>
<li> Enhancement: Fortran precisions are now explicit. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/80">PR #80</a>)</li>
<li> Enhancement: Improved inline yt analysis. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/13">PR #13</a>)</li>
<li> Enhancement: Support for ghost-zone input/output. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/8">PR #8</a>)</li>
<li> Enhancement: Reorganized and improved code documentation. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/79">PR #79</a>, and many more)</li>
<li> Enhancement: Improvements to answer testing. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/82">PR #82</a>, and many more)</li>
<li> Enhancement: Docs for enzo performance measurement/analysis. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/38">PR #38</a>) </li>
<li> Bugfix: Generalizing the conversion to conserved quantities. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/75">PR #75</a>) </li>
<li> Bugfix: Fixing the set-acceleration-boundary compile flag. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/77">PR #77</a>) </li>
<li> Bugfix: Bug fix in hydro shock tubes initialization (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/76">PR #76</a>) </li>
<li> Bugfix: Fix precision settings in WriteParameterFile. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/74">PR #74</a>) </li>
<li> Bugfix: Fixing create_config_info.py to replace ^M with \n in the output of 'hg diff'. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/73">PR #73</a>) </li>
<li> Bugfix: MAX_ANY_DIRECTION check (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/72">PR #72</a>) </li>
<li> Bugfix: Fixing memory leak. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/71">PR #71</a>) </li>
<li> Bugfix: Shocks on output bugfix (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/70">PR #70</a>) </li>
<li> Bugfix: Backporting Mike's hdf5 hierarchy fixes. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/69">PR #69</a>) </li>
<li> Bugfix: fix too-many-files issue with make dep (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/65">PR #65</a>) </li>
<li> Bugfix: Changing MAX_ANY_SINGLE_DIRECTION from 3079 to 1024. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/62">PR #62</a>) </li>
<li> Bugfix: Minor fixes to H2 chemistry & cooling (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/61">PR #61</a>) </li>
<li> Bugfix: Removing extra 1/dom factor in MetalCooling = 1 (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/59">PR #59</a>) </li>
<li> Bugfix: Removing unused experimental chemistry code (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/60">PR #60</a>) </li>
<li> Bugfix: Adding -fdefault-double-8 for example machine files for GNU v4.6+ (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/54">PR #54</a>) </li>
<li> Bugfix: Change default setting for (the inaccurately named) bitwise-identicality setting to no (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/47">PR #47</a>) </li>
<li> Bugfix: Subgrid size change and FOF bugfix (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/46">PR #46</a>) </li>
<li> Bugfix: Fixed tracer particle allocation (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/44">PR #44</a>) </li>
<li> Bugfix: Sink particle merging fixes (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/40">PR #40</a>) </li>
<li> Bugfix: Fixed small errorPartition Grid only if not already partitioned (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/28">PR #28</a>) </li>
<li> Bugfix: Small changes for GENum in AddFeedbackSphere and IdentifyPhysicalQuantites to avoid confusion with DensNum. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/25">PR #25</a>) </li>
<li> Bugfix: Fix for Ghost Zone IO (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/34">PR #34</a>) </li>
<li> Bugfix: Fixing some errors in the description of Cen & Ostriker star (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/33">PR #33</a>) </li>
<li> Bugfix: moved ENZO_FAIL before the loop to see if fields already exist. this loop will be infinite if OldNumberOfBaryonFields + FieldsToAdd > MAX_NUMBER_OF_BARYON_FIELDS, so it's best to do the check first. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/31">PR #31</a>) </li>
<li> Bugfix: Corrected Make.config.target's transposition of branch and revision info (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/30">PR #30</a>) </li>
<li> Bugfix: Fixing small error (3.5%) in TemperatureUnits in CosmologyGetUnits.C (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/26">PR #26</a>) </li>
<li> Bugfix: Small doc fix. (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/22">PR #22</a>) </li>
<li> Bugfix: Changing enzo_unit_tests.h to Unix file format (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/19">PR #19</a>) </li>
<li> Bugfix: Bugfix MetalCooling=1 missing a factor of density (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/16">PR #16</a>) </li>
<li> Bugfix: Make inits work for 2D cosmology simulations (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/12">PR #12</a>) </li>
<li> Bugfix: Deleting LevelArray variable after HDF5 hierarchy is written (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/9">PR #9</a>) </li>
<li> Bugfix: make HDF5Hierarchy work with particles-128 (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/11">PR #11</a>) </li>
<li> Bugfix: Fix urgent Ghost Zone bug (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/14">PR #14</a>) </li>
<li> Bugfix: dtPhoton lower limit (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/5">PR #5</a>) </li>
<li> Bugfix: HDF5 Hierarchy fix (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/1">PR #1</a>) </li>
<li> Bugfix: Fix the rotating cylinder test problem (<a href="https://bitbucket.org/enzo/enzo-dev/pull-request/4">PR #4</a>) </li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#Enzo21">
<h2>Enzo 2.1</h2>
</a>
</div>
<div id="Enzo21" class="accordion-body collapse">
<div class="accordion-inner">
<ul class="nav nav-tabs">
<li class="active"><a href="#releasenotes21" data-toggle="tab">Release Notes</a></li>
<li><a href="#changelog21" data-toggle="tab">Changelog</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="releasenotes21">
<h4>Enzo 2.1.1</h4>
<p><i>Release Date – Oct. 27, 2011</i></p>
<p> A minor release featuring mostly bugfixes. See the changelog for details.</p>
<br>
<h4>Enzo 2.1.0</h4>
<p><i>Release Date – Oct. 17, 2011</i></p>
<p>We are proud to announce the public release of Enzo version 2.1. New with this release is an extensive answer testing facility, additional physics capabilities, and AMR performance enhancements. New physics capabilities include isotropic and anisotropic heat conduction, X-ray ionization/heating, massive black hole particles, 4th-order accurate gravity solver, distributed stellar feedback, shock tracking, and improved molecular hydrogen chemistry. Performance improvements include Hilbert curve dynamic load balancing, faster ray tracing, and ray merging. We have improved Enzo’s inline analysis using the yt project, as well as user documentation for the entire Enzo codebase. We have also simplified the generation of multi-mesh cosmological initial conditions.</p>
<p>In addition to code upgrades, we have upgraded and reorganized our online repositories and documentation. The Enzo Project’s main website is now <a href="http://enzo-project.org/" rel="nofollow">http://enzo-project.org/</a> . Links and information can be found here for both developers and general users. Our stable releases will continue to live on our Google code website: <a href="http://code.google.com/p/enzo/" rel="nofollow">http://code.google.com/p/enzo/</a> . Users can clone a mercurial repository of our stable release code or download a tarball of the code (<a href="http://code.google.com/p/enzo/downloads/list" rel="nofollow">http://code.google.com/p/enzo/downloads/list</a> A simple quick-start guide can also be found here: <a href="http://code.google.com/p/enzo/wiki/EnzoBootCamp" rel="nofollow">http://code.google.com/p/enzo/wiki/EnzoBootCamp</a> We will now support versioned documentation for all stable releases since Enzo 2.0 in addition to the development code on enzo-project.org. The documentation for Enzo 2.1 is located here: <a href="http://enzo-project.org/docs/2.1/" rel="nofollow">http://enzo-project.org/docs/2.1/</a>.</p>
<p>Development will now move to our new Bitbucket repository where all users are encouraged to make contributions to the code by forking the main repository, located at <a href="https://bitbucket.org/enzo/enzo-dev" rel="nofollow">https://bitbucket.org/enzo/enzo-dev</a> . An explanation of new developer guidelines can be found here: <a href="http://enzo-project.org/docs/2.1/developer_guide/index.html" rel="nofollow">http://enzo-project.org/docs/2.1/developer_guide/index.html</a>. The current release of Enzo 2.1 features contributions, bug fixes and enhancements from an additional ten individuals (over the course of 2700 changesets) since Enzo 2.0, and through our new development infrastructure we are expanding our ability to solicit and review contributions.</p>
<ul>
<li>Main website: <a href="http://enzo-project.org/" rel="nofollow">http://enzo-project.org/</a> </li>
<li>Mailing List: <a href="https://groups.google.com/forum/#!forum/enzo-users" rel="nofollow">https://groups.google.com/forum/#!forum/enzo-users</a> </li>
<li>Stable repository: <a href="http://code.google.com/p/enzo/" rel="nofollow">http://code.google.com/p/enzo/</a> </li>
<li>Tarball of Enzo 2.1.0: <a href="http://code.google.com/p/enzo/downloads/list" rel="nofollow">http://code.google.com/p/enzo/downloads/list</a> </li>
<li>Enzo Boot Camp (a quick-start guide): <a href="http://code.google.com/p/enzo/wiki/EnzoBootCamp" rel="nofollow">http://code.google.com/p/enzo/wiki/EnzoBootCamp</a> </li>
<li>Enzo 2.1.0 documentation: <a href="http://enzo-project.org/docs/2.1/" rel="nofollow">http://enzo-project.org/docs/2.1/</a> </li>
<li>Developer’s repository: <a href="https://bitbucket.org/enzo/enzo-dev/overview" rel="nofollow">https://bitbucket.org/enzo/enzo-dev/overview</a> </li>
<li>Developer’s guidlines: <a href="http://enzo-project.org/docs/2.1/developer_guide/index.html" rel="nofollow">http://enzo-project.org/docs/2.1/developer_guide/index.html</a> </li>
</ul>
<p>Enzo development is supported by grants AST-0808184 and OCI-0832662 from the National Science Foundation.</p>
</div>
<div class="tab-pane" id="changelog21">
<h4>Enzo 2.1.1</h4>
<ul>
<li> Enhancement: Test suite is now fully operational. See run/README for more details. </li>
<li> Enhancement: The “must refine” region can move with a user-defined, time-dependent refine region (parameter RefineRegionFile and refinement option 12) </li>
<li> Bugfix: Enzo now compiles with HDF5 v1.6.x (Michael Kuhlen) </li>
<li> Bugfix: User-defined time-dependent refine region now works with code time (David Collins) </li>
<li> Bugfix: Photon timesteps no longer go to tiny numbers (~1e-20) in certain situations when using the HII-restricted timestepping algortihm. </li>
</ul>
<br>
<h4>Enzo 2.1.0</h4>
<ul>
<li> New feature: Isotropic and anisotropic heat conduction </li>
<li> New feature: X-ray ionization and heating </li>
<li> New feature: Massive black hole particles </li>
<li> New feature: Testing suite </li>
<li> New feature: Shock tracking </li>
<li> New feature: Distributed stellar feedback across multiple cells </li>
<li> Enhancement: Improved molecular hydrogen chemistry at high densities </li>
<li> Enhancement: Fourth-order accurate gravity solver </li>
<li> Enhancement: HDF5 based hierarchy file (off by default) </li>
<li> Enhancement: Dust cooling -- Molecular hydrogen formation on dust grains </li>
<li> Enhancement: Time-dependent Lyman-Werner radiation backgrounds </li>
<li> Enhancement: Type Ia SNe and planetary nebulae feedback </li>
<li> Enhancement: HLLC and HLL Riemann solvers for HD (HydroMethod=0) </li>
<li> Enhancement: HLLD Riemann solver for MHD </li>
<li> Enhancement: Improved inline analysis with yt </li>
<li> Enhancement: Simplifed multi-mesh cosmological initial conditions with inits. </li>
<li> Enhancement: Improved and expanded documentation </li>
<li> Performance improvement: Load balancing on a space-filling curve </li>
<li> Performance improvement: Parallel ray tracing </li>
<li> Performance improvement: Ray tracing load balancing </li>
<li> Changed all FORTRAN files to .F instead of .src to remove the pre-processing step. </li>
<li> Various bugfixes over the past year. </li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#Enzo20">
<h2>Enzo 2.0</h2>
</a>
</div>
<div id="Enzo20" class="accordion-body collapse">
<div class="accordion-inner">
<ul class="nav nav-tabs">
<li class="active"><a href="#releasenotes20" data-toggle="tab">Release Notes</a></li>
<li><a href="#changelog20" data-toggle="tab">Changelog</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="releasenotes20">
<p><i>Release Date – Jul. 1, 2010</i></p>
<p>We are proud to announce the public release of Enzo version 2.0. Enzo is a parallel code for astrophysical and cosmological simulations utilizing adaptive mesh refinement. Enzo 2.0 features many new physics capabilities including ideal MHD, radiation transport (ray tracing and flux limited diffusion), star particle class, metallicity-dependent cooling, and several new hydro solvers. More importantly, we have introduced new software tools to make using and developing Enzo easier. We have adopted distributed version control using Mercurial which supports the growing Enzo developer community. The documentation has been made more accessible and is now distributed with the source code. We have more than doubled the number of test problems and example problems as well as the number of developers!) In addition, we have added solution testing to the nightly regression tests.</p>
<p>Enzo 2.0 is the product of developments made at UC San Diego, Stanford, Princeton, Columbia, MSU, CU Boulder, CITA, McMaster, SMU, and UC Berkeley.</p>
<p>Enzo 2.0 now lives at <a href="http://enzo.googlecode.com/" rel="nofollow">http://enzo.googlecode.com/</a> to reflect its multi-institutional provenance. Prospective users are also encouraged to view online lectures from the 2010 Enzo Users' Workshop at <a href="http://lca.ucsd.edu/workshops/enzo2010" rel="nofollow">http://lca.ucsd.edu/workshops/enzo2010</a>. </p>
<p>Enzo development is supported by grants AST-0808184 and OCI-0832662 from the National Science Foundation.</p>
</div>
<div class="tab-pane" id="changelog20">
Not Available.
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer>