musica 0.11.1.4__cp312-cp312-macosx_11_0_arm64.whl → 0.12.0__cp312-cp312-macosx_11_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of musica might be problematic. Click here for more details.

Files changed (39) hide show
  1. musica/_musica.cpython-312-darwin.so +0 -0
  2. musica/_version.py +1 -1
  3. musica/constants.py +3 -0
  4. musica/mechanism_configuration/__init__.py +1 -0
  5. musica/mechanism_configuration/aqueous_equilibrium.py +101 -0
  6. musica/mechanism_configuration/arrhenius.py +121 -0
  7. musica/mechanism_configuration/branched.py +116 -0
  8. musica/mechanism_configuration/condensed_phase_arrhenius.py +116 -0
  9. musica/mechanism_configuration/condensed_phase_photolysis.py +91 -0
  10. musica/mechanism_configuration/emission.py +67 -0
  11. musica/mechanism_configuration/first_order_loss.py +67 -0
  12. musica/mechanism_configuration/henrys_law.py +85 -0
  13. musica/mechanism_configuration/mechanism_configuration.py +161 -0
  14. musica/mechanism_configuration/phase.py +43 -0
  15. musica/mechanism_configuration/photolysis.py +83 -0
  16. musica/mechanism_configuration/reactions.py +61 -0
  17. musica/mechanism_configuration/simpol_phase_transfer.py +88 -0
  18. musica/mechanism_configuration/species.py +72 -0
  19. musica/mechanism_configuration/surface.py +89 -0
  20. musica/mechanism_configuration/troe.py +137 -0
  21. musica/mechanism_configuration/tunneling.py +103 -0
  22. musica/mechanism_configuration/user_defined.py +83 -0
  23. musica/mechanism_configuration/utils.py +10 -0
  24. musica/mechanism_configuration/wet_deposition.py +49 -0
  25. musica/mechanism_configuration.cpp +0 -1
  26. musica/test/examples/v1/full_configuration/full_configuration.json +30 -15
  27. musica/test/examples/v1/full_configuration/full_configuration.yaml +16 -1
  28. musica/test/test_analytical.py +1 -1
  29. musica/test/test_parser.py +3 -639
  30. musica/test/test_serializer.py +69 -0
  31. musica/test/test_util_full_mechanism.py +668 -0
  32. musica/types.py +1 -4
  33. {musica-0.11.1.4.dist-info → musica-0.12.0.dist-info}/METADATA +61 -46
  34. musica-0.12.0.dist-info/RECORD +57 -0
  35. musica-0.12.0.dist-info/licenses/AUTHORS.md +59 -0
  36. musica/mechanism_configuration.py +0 -1291
  37. musica-0.11.1.4.dist-info/RECORD +0 -33
  38. {musica-0.11.1.4.dist-info → musica-0.12.0.dist-info}/WHEEL +0 -0
  39. {musica-0.11.1.4.dist-info → musica-0.12.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: musica
3
- Version: 0.11.1.4
3
+ Version: 0.12.0
4
4
  Summary: MUSICA is a Python library for performing computational simulations in atmospheric chemistry.
5
5
  Author-Email: Matthew Dawsom <mattdawson@ucar.edu>, Jiwon Gim <jiwongim@ucar.edu>, David Fillmore <fillmore@ucar.edu>, Kyle Shores <kshores@ucar.edu>, Montek Thind <mthind@ucar.edu>
6
6
  Maintainer-Email: ACOM MUSICA Developers <musica-support@ucar.edu>
@@ -207,6 +207,7 @@ License: Apache License
207
207
  limitations under the License.
208
208
 
209
209
  Project-URL: homepage, https://wiki.ucar.edu/display/MUSICA/MUSICA+Home
210
+ Requires-Dist: pyyaml>=6.0.2
210
211
  Provides-Extra: test
211
212
  Requires-Dist: numpy; extra == "test"
212
213
  Requires-Dist: pytest; extra == "test"
@@ -233,13 +234,21 @@ Multi-Scale Infrastructure for Chemistry and Aerosols
233
234
  MUSICA is a collection of modeling software, tools, and grids, that
234
235
  allow for robust modeling of chemistry in Earth's atmosphere.
235
236
 
236
- At present the project encompasses these components
237
+ At present the project encompasses these core components
237
238
  - [TUV-x](https://github.com/NCAR/tuv-x)
238
239
  - A photolysis rate calculator
239
240
 
240
241
  - [MICM](https://github.com/NCAR/micm)
241
242
  - Model Independent Chemical Module
242
243
 
244
+ - [Mechanism Configuration](https://github.com/NCAR/MechanismConfiguration)
245
+ - The standardized format to describe atmospheric chemistry
246
+
247
+ These components are used to drive the MUSICA software ecosystem. This is a snapshot of how MUSICA can be used with different
248
+ models.
249
+
250
+ ![MUSICA Ecosystem](docs/source/_static/ecosystem.png)
251
+
243
252
  # Installation
244
253
  MUSICA is installable via pip for Python or CMake for C++.
245
254
 
@@ -247,6 +256,7 @@ MUSICA is installable via pip for Python or CMake for C++.
247
256
  ```
248
257
  pip install musica
249
258
  ```
259
+
250
260
  ## CMake
251
261
  ```
252
262
  $ git clone https://github.com/NCAR/musica.git
@@ -343,17 +353,13 @@ import matplotlib.pyplot as plt
343
353
  df.plot(x='time.s', y=['CONC.A.mol m-3', 'CONC.B.mol m-3', 'CONC.C.mol m-3'], title='Concentration over time', ylabel='Concentration (mol m-3)', xlabel='Time (s)')
344
354
  plt.show()
345
355
  ```
346
- # Available grids
347
356
 
357
+ # Available grids
348
358
  Pre-made grids for use in MUSICA are available [here](https://wiki.ucar.edu/display/MUSICA/Available+Grids).
349
359
 
350
- # Contributors guide
351
- Checkout our [software development plan](docs/Software%20Development%20Plan.pdf)
352
- to see how you can contribute new science to MUSICA software.
353
-
354
360
  ## Developer Options
355
361
 
356
- ### Specifying dependency versions via paramaterization at configure time
362
+ ### Specifying dependency versions via parameterization at configure time
357
363
 
358
364
  Introduced in [Pull Request #124](https://github.com/NCAR/musica/pull/124), it is possible for developers to specify which versions of various dependencies should be used. These options are currently limited to those dependencies managed via `FetchContent`. This change allows for more easily testing `musica` against changes committed in different repositories and branches. The environmental variables introduced are outlined in the following table.
359
365
 
@@ -365,6 +371,7 @@ Introduced in [Pull Request #124](https://github.com/NCAR/musica/pull/124), it i
365
371
  | [MICM](https://github.com/NCAR/mcim.git) | MICM_GIT_REPOSITORY | MICM_GIT_TAG |
366
372
  | [TUV-X](https://github.com/NCAR/tuv-x.git) | TUVX_GIT_REPOSITORY | TUVX_GIT_TAG |
367
373
  | [PyBind11](https://github.com/pybind/pybind11) | PYBIND11_GIT_REPOSITORY | PYBIND11_GIT_TAG |
374
+ | [Mechanism Configuration](https://github.com/NCAR/MechanismConfiguration.git) | MECH_CONFIG_GIT_REPOSITORY | MECH_CONFIG_GIT_TAG |
368
375
 
369
376
  #### Example Usage
370
377
 
@@ -416,41 +423,49 @@ variable `BUILD_GPU`.
416
423
  BUILD_GPU=1 pip install -e .
417
424
  ```
418
425
 
419
- ## Citing MUSICA
420
-
421
- MUSICA can be cited in at least two ways. The first is to cite [the paper](https://doi.org/10.1175/BAMS-D-19-0331.1) that defines the vision
422
- of the MUSICA software. The bibtex entry below can be used to generate a citaiton for this.
423
-
424
- ```
425
- @Article { acom.software.musica-vision,
426
- author = "Gabriele G. Pfister and Sebastian D. Eastham and Avelino F. Arellano and Bernard Aumont and Kelley C. Barsanti and Mary C. Barth and Andrew Conley and Nicholas A. Davis and Louisa K. Emmons and Jerome D. Fast and Arlene M. Fiore and Benjamin Gaubert and Steve Goldhaber and Claire Granier and Georg A. Grell and Marc Guevara and Daven K. Henze and Alma Hodzic and Xiaohong Liu and Daniel R. Marsh and John J. Orlando and John M. C. Plane and Lorenzo M. Polvani and Karen H. Rosenlof and Allison L. Steiner and Daniel J. Jacob and Guy P. Brasseur",
427
- title = "The Multi-Scale Infrastructure for Chemistry and Aerosols (MUSICA)",
428
- journal = "Bulletin of the American Meteorological Society",
429
- year = "2020",
430
- publisher = "American Meteorological Society",
431
- address = "Boston MA, USA",
432
- volume = "101",
433
- number = "10",
434
- doi = "10.1175/BAMS-D-19-0331.1",
435
- pages= "E1743 - E1760",
436
- url = "https://journals.ametsoc.org/view/journals/bams/101/10/bamsD190331.xml"
437
- }
438
- ```
439
-
440
- At present MUSICA is on version zero. MUSICAv0 can be cited using the bibtex entry below.
441
- MUSICAv0 description and evaluation:
442
-
443
- ```
444
- @Article{acom.software.musica,
445
- author = {Schwantes, Rebecca H. and Lacey, Forrest G. and Tilmes, Simone and Emmons, Louisa K. and Lauritzen, Peter H. and Walters, Stacy and Callaghan, Patrick and Zarzycki, Colin M. and Barth, Mary C. and Jo, Duseong S. and Bacmeister, Julio T. and Neale, Richard B. and Vitt, Francis and Kluzek, Erik and Roozitalab, Behrooz and Hall, Samuel R. and Ullmann, Kirk and Warneke, Carsten and Peischl, Jeff and Pollack, Ilana B. and Flocke, Frank and Wolfe, Glenn M. and Hanisco, Thomas F. and Keutsch, Frank N. and Kaiser, Jennifer and Bui, Thao Paul V. and Jimenez, Jose L. and Campuzano-Jost, Pedro and Apel, Eric C. and Hornbrook, Rebecca S. and Hills, Alan J. and Yuan, Bin and Wisthaler, Armin},
446
- title = {Evaluating the Impact of Chemical Complexity and Horizontal Resolution on Tropospheric Ozone Over the Conterminous US With a Global Variable Resolution Chemistry Model},
447
- journal = {Journal of Advances in Modeling Earth Systems},
448
- volume = {14},
449
- number = {6},
450
- pages = {e2021MS002889},
451
- doi = {https://doi.org/10.1029/2021MS002889},
452
- url = {https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/2021MS002889},
453
- eprint = {https://agupubs.onlinelibrary.wiley.com/doi/pdf/10.1029/2021MS002889},
454
- year = {2022}
455
- }
456
- ```
426
+ # Contributing
427
+
428
+ We welcome contributions from the community! Please see our [Contributing Guide](CONTRIBUTING.md) for information on how to get involved.
429
+
430
+ For a complete list of contributors and authors, see [AUTHORS.md](AUTHORS.md).
431
+
432
+ # Citations
433
+
434
+ MUSICA can be cited in at least two ways:
435
+
436
+ 1. **Cite the foundational paper** that defines the vision of the MUSICA software:
437
+ - [Pfister et al., 2020, Bulletin of the American Meteorological Society](https://doi.org/10.1175/BAMS-D-19-0331.1)
438
+ - Use the following BibTeX entry:
439
+ ```
440
+ @Article { acom.software.musica-vision,
441
+ author = "Gabriele G. Pfister and Sebastian D. Eastham and Avelino F. Arellano and Bernard Aumont and Kelley C. Barsanti and Mary C. Barth and Andrew Conley and Nicholas A. Davis and Louisa K. Emmons and Jerome D. Fast and Arlene M. Fiore and Benjamin Gaubert and Steve Goldhaber and Claire Granier and Georg A. Grell and Marc Guevara and Daven K. Henze and Alma Hodzic and Xiaohong Liu and Daniel R. Marsh and John J. Orlando and John M. C. Plane and Lorenzo M. Polvani and Karen H. Rosenlof and Allison L. Steiner and Daniel J. Jacob and Guy P. Brasseur",
442
+ title = "The Multi-Scale Infrastructure for Chemistry and Aerosols (MUSICA)",
443
+ journal = "Bulletin of the American Meteorological Society",
444
+ year = "2020",
445
+ publisher = "American Meteorological Society",
446
+ address = "Boston MA, USA",
447
+ volume = "101",
448
+ number = "10",
449
+ doi = "10.1175/BAMS-D-19-0331.1",
450
+ pages= "E1743 - E1760",
451
+ url = "https://journals.ametsoc.org/view/journals/bams/101/10/bamsD190331.xml"
452
+ }
453
+ ```
454
+
455
+ 2. **Cite the MUSICA software and its evaluation** (MUSICAv0):
456
+ - [Schwantes et al., 2022, Journal of Advances in Modeling Earth Systems](https://doi.org/10.1029/2021MS002889)
457
+ - Use the following BibTeX entry:
458
+ ```
459
+ @Article{acom.software.musica,
460
+ author = {Schwantes, Rebecca H. and Lacey, Forrest G. and Tilmes, Simone and Emmons, Louisa K. and Lauritzen, Peter H. and Walters, Stacy and Callaghan, Patrick and Zarzycki, Colin M. and Barth, Mary C. and Jo, Duseong S. and Bacmeister, Julio T. and Neale, Richard B. and Vitt, Francis and Kluzek, Erik and Roozitalab, Behrooz and Hall, Samuel R. and Ullmann, Kirk and Warneke, Carsten and Peischl, Jeff and Pollack, Ilana B. and Flocke, Frank and Wolfe, Glenn M. and Hanisco, Thomas F. and Keutsch, Frank N. and Kaiser, Jennifer and Bui, Thao Paul V. and Jimenez, Jose L. and Campuzano-Jost, Pedro and Apel, Eric C. and Hornbrook, Rebecca S. and Hills, Alan J. and Yuan, Bin and Wisthaler, Armin},
461
+ title = {Evaluating the Impact of Chemical Complexity and Horizontal Resolution on Tropospheric Ozone Over the Conterminous US With a Global Variable Resolution Chemistry Model},
462
+ journal = {Journal of Advances in Modeling Earth Systems},
463
+ volume = {14},
464
+ number = {6},
465
+ pages = {e2021MS002889},
466
+ doi = {https://doi.org/10.1029/2021MS002889},
467
+ url = {https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/2021MS002889},
468
+ eprint = {https://agupubs.onlinelibrary.wiley.com/doi/pdf/10.1029/2021MS002889},
469
+ year = {2022}
470
+ }
471
+ ```
@@ -0,0 +1,57 @@
1
+ musica-0.12.0.dist-info/RECORD,,
2
+ musica-0.12.0.dist-info/WHEEL,sha256=urOngRej-N66IHV9pQM-i-51cfpPdL6_gFSgjSRmYM4,114
3
+ musica-0.12.0.dist-info/METADATA,sha256=ecoVy_lRUnvTA_JTGQRg8SB3EtlnFMr2Lq_8Ke8X1gs,25995
4
+ musica-0.12.0.dist-info/licenses/AUTHORS.md,sha256=CYIlKZmXT9ngFk6d0MiD0A_Pt8BFoID4n-29OMrKkbM,2632
5
+ musica-0.12.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
6
+ musica/CMakeLists.txt,sha256=E5Z8tLfxUc0RAma1vKtN2-2s3CqHog2njYje9qHehQc,1050
7
+ musica/_version.py,sha256=0d_eblF-LMXh1_mZw-q2DqmmX_vZj5tYDy8MONmqkNU,19
8
+ musica/constants.py,sha256=BlRH2m12F7NXGZd5slV0qIgYa-qt1yfjKBbMpTQQd1c,122
9
+ musica/binding_common.cpp,sha256=40rvAVZQkOloAKXNhUngkiZNaD7LfHE8jnCcoOOXAak,560
10
+ musica/__init__.py,sha256=TXWCmKd4hBa09jf9917-cM5_DQ0Qcio__a1ZkfysT5k,1748
11
+ musica/cpu_binding.cpp,sha256=nOLBGDWvvtxeAyIbeP3bXIeB_xzZoU_ALduHanHjR0Q,224
12
+ musica/types.py,sha256=F4Gq2kXi3NTnj3_t7H-zN3E51n81kidThVYIJaNA-PM,14788
13
+ musica/gpu_binding.cpp,sha256=wWkM_J_2Ky0OawxEXkdvPCzctfSsiH7THs2cVkr0S2s,228
14
+ musica/cuda.py,sha256=A0U0plsFuQgezWrwN8217kkC5URxjlsKI0ymYJCSdDE,224
15
+ musica/cuda.cpp,sha256=qQOLKTUOB83gE-963rT579Me-NrqMUWnXDKmpTPMVFg,346
16
+ musica/binding_common.hpp,sha256=YVG7TS1JeVC4W_yisV4kL61qo3N6Dt6JdAh9bdr6z2w,102
17
+ musica/mechanism_configuration.cpp,sha256=OSYEoF6GeDntcyPRajKUdiU7b6r-6SFv4UsG8hySH0A,27034
18
+ musica/_musica.cpython-312-darwin.so,sha256=BYcY2AO_h5GH0r1iRFdsq_V68rY6XEFF5wlbdo-tNXU,1576432
19
+ musica/musica.cpp,sha256=cMi5OfncDV_ROlhjCSvvGtUHWBl_oYcUwTu4KFLTBjg,8400
20
+ musica/tools/prepare_build_environment_windows.sh,sha256=zMY_RIerqfMC1VlfpZ2KjjDWfBUOvvx8oRNk_jJhmII,826
21
+ musica/tools/prepare_build_environment_linux.sh,sha256=yKjBD_eFMMvqth_PSF1qzmr7VLSMWiPufBh1inhuIRs,1457
22
+ musica/tools/repair_wheel_gpu.sh,sha256=GJcKUJ2n9KMsj3QC5Shxt_ks9uFu2f9Than-4vVhG9U,1485
23
+ musica/test/test_parser.py,sha256=6G2RIR6u8V_EtDBJqjWJPkdSwa7ZXNDD9pkDqezm8fI,2259
24
+ musica/test/test_chapman.py,sha256=gOISpApVIMLCEv6W0Hq1yNGF0xu2MlZMHQQhOGPmoQI,3512
25
+ musica/test/test_serializer.py,sha256=8WnFme_CpJBMlACG_YePCjxdm6qAZxYhqFw-ZgnWPNA,2466
26
+ musica/test/tuvx.py,sha256=rWvBcG6cgLJylqkf8M0MFMKT2AkyoaZlGdaKjVSbCR8,116
27
+ musica/test/test_util_full_mechanism.py,sha256=rTxHljAJSODDYAcDbstneT0NlVGZxEIuXLU9o1qFi7k,24063
28
+ musica/test/test_analytical.py,sha256=U35zRGMjOQ_lRtFoKHn-MtA78oYagm7XzhiR96jPgE4,13806
29
+ musica/test/examples/v1/full_configuration/full_configuration.yaml,sha256=bY9JWnmnio03kUDX58aAzsPC5R2-lfLKavMFD_NtO3k,5535
30
+ musica/test/examples/v1/full_configuration/full_configuration.json,sha256=L_QdufMp4M1YqPMpHvI_g1jWjIWfVzEHfskilUFg3uo,9212
31
+ musica/test/examples/v0/species.json,sha256=xKTcwh9QV9sRjLPK9GvGEnatBrRPbP857NmPG0bCXqU,565
32
+ musica/test/examples/v0/species.yaml,sha256=vUYTs7bp2AYVWHDgXBFxnCkmqdO6ysJ_ulOQTAoKa1M,283
33
+ musica/test/examples/v0/config.json,sha256=7s6g5jxH2GiEiRcZmO13IJ5k4walg1C9t-dQr9o45U4,79
34
+ musica/test/examples/v0/config.yaml,sha256=GgA18mP8ZCzOdY-AlAePK48M05PJFPeWCk-IfrPN_VE,44
35
+ musica/test/examples/v0/reactions.json,sha256=7WJhItBPtGu89vLcPMK6izW8BvwUAIjfzqwjtDmfPPg,4188
36
+ musica/test/examples/v0/reactions.yaml,sha256=uEuQOz5i7vGyn0G7KsmdWv23V2Gn0QUmexrK030CFlo,2266
37
+ musica/mechanism_configuration/phase.py,sha256=1bT9iAn8Ah0txW9SkjRhViFlry027aZD95fKBrJOVkc,1539
38
+ musica/mechanism_configuration/species.py,sha256=S1jU9j4Pf6MjiepqM1jwaz6r5tiIanHS4_naduJxbl8,3923
39
+ musica/mechanism_configuration/henrys_law.py,sha256=ue5e_M0U37gbJeOq_kelv0kgXptEjbpMLSPWG5ByqxA,4181
40
+ musica/mechanism_configuration/tunneling.py,sha256=CtzNq7VyLsdI0_W9NdLOC89N99tSSbfRZMn5j1g-0as,4305
41
+ musica/mechanism_configuration/mechanism_configuration.py,sha256=A6JhB1VbNcMjsPhPuuihYI190rlzXqRsm-K_-uAdXmU,6867
42
+ musica/mechanism_configuration/branched.py,sha256=Ei0mFGUaxg8_nIfIi5UkFuye74KRyK5_bNuoertI7U8,5215
43
+ musica/mechanism_configuration/reactions.py,sha256=UXVRjWGY-n4RFF4xp4kGeFhdTr3J1z6dyLxIAQ5Zg6I,1674
44
+ musica/mechanism_configuration/__init__.py,sha256=WVIbDCgpAd-jH9TBPou-5tyrdxb5Vbm9Zl2h7xmNiQ8,38
45
+ musica/mechanism_configuration/user_defined.py,sha256=r2QwOkmRVeVJvJKXxnyxxjXkX4xmMQZ_AlOzO4s2UAg,3752
46
+ musica/mechanism_configuration/aqueous_equilibrium.py,sha256=NvuIlbMap4vJbHXBgLhrRku-uuWiN1Y_cDp3pMtwQzc,4760
47
+ musica/mechanism_configuration/condensed_phase_arrhenius.py,sha256=1HOWYXPL40koeCJOZKxUwJbt8sZybugP7Qa-Yh6e3Ok,5361
48
+ musica/mechanism_configuration/first_order_loss.py,sha256=blRz-RKUZICA5nd2SciQNXbxoLVF5iEV4_aITuKCHPo,3048
49
+ musica/mechanism_configuration/utils.py,sha256=nR-ukwYsplFfnsjXtKQsXnryMPvtjkZkFQv7TjcSrnE,346
50
+ musica/mechanism_configuration/wet_deposition.py,sha256=k6MV7vGWsxmR7FWbH2YPALFAwtZB37rNdoeyWICOleU,2183
51
+ musica/mechanism_configuration/condensed_phase_photolysis.py,sha256=nlWWKCKenPDHfQR-cyq6RNLoOpS0wW5-1Zw_BH4XiZo,4392
52
+ musica/mechanism_configuration/arrhenius.py,sha256=Q7ncI08AxN1yXvhslhe6oCFea43-44l2BYcy2HEaKWA,5147
53
+ musica/mechanism_configuration/troe.py,sha256=SX9REl-6ts1BEbEhIDtUBDbEZPpLjhZPWIgFv10-qpM,6576
54
+ musica/mechanism_configuration/simpol_phase_transfer.py,sha256=pPy1laAO9F4cmBcMM1NJ-RHuWjirfRZUF4zAWMVGF60,4247
55
+ musica/mechanism_configuration/photolysis.py,sha256=HXkOn_bU67Qe5VyPrAcyh1KPzIS19GyCXpDCVmU1yzs,3744
56
+ musica/mechanism_configuration/emission.py,sha256=uTVCN9M1XXsooiGyXDK9eOX3uBsSKnwxXMjVIAMU424,2946
57
+ musica/mechanism_configuration/surface.py,sha256=XdCWeIZ1OojjOfFO_Tw2MEhnyWGzncc64qOw6XHXZUI,4185
@@ -0,0 +1,59 @@
1
+ # MUSICA Authors and Contributors
2
+
3
+ This file acknowledges all individuals who have contributed to the MUSICA project.
4
+
5
+ ## Core Development Team
6
+
7
+ The following individuals are the primary developers and maintainers of the MUSICA software:
8
+
9
+ - **Matthew Dawson** (mattdawson@ucar.edu) - Core Developer
10
+ - **Jiwon Gim** (jiwongim@ucar.edu) - Core Developer
11
+ - **David Fillmore** (fillmore@ucar.edu) - Core Developer
12
+ - **Kyle Shores** (kshores@ucar.edu) - Core Developer
13
+ - **Montek Thind** (mthind@ucar.edu) - Core Developer
14
+ - **Jian Sun** - Core Developer
15
+
16
+ ## Scientific Leadership and Vision
17
+
18
+ The scientific leadership and vision for MUSICA are provided by the authors of the [foundational paper](https://doi.org/10.1175/BAMS-D-19-0331.1).
19
+ This software implements that vision. For a full list of scientific authors,
20
+ please refer to our [CITATION.cff](CITATION.cff) file. To cite the software, use the Zenodo DOI from our latest release.
21
+
22
+ ## Additional Contributors
23
+
24
+ <!-- Contributors will be added here as they join the project -->
25
+ <!-- Format: -->
26
+ <!-- - **Name** (affiliation) - Brief description of contribution -->
27
+
28
+ - **Aidan Winney** - Documentation and Tutorials
29
+ - **Angela Pak** - Documentation and Tutorials
30
+ - **Dee Grant** - Improving the Python API
31
+ - **Qina Tan** - Implementing the CUDA-based Rosenbrock solver
32
+
33
+ ## Recognition Policy
34
+
35
+ We recognize contributors at different levels based on their involvement:
36
+
37
+ - **Core Development Team**: Listed in `pyproject.toml`, `.zenodo.json` (creators), and this file
38
+ - **Additional Contributors**: Listed in `.zenodo.json` (contributors) and this file
39
+ - **All Contributors**: Automatically tracked by GitHub's contributor statistics
40
+
41
+ See our [Contributing Guide](CONTRIBUTING.md) for more details on how contributions are recognized.
42
+
43
+ ## How to Contribute
44
+
45
+ We welcome contributions from the community! Please see our [Contributing Guide](CONTRIBUTING.md) for information on how to get involved.
46
+
47
+ ## Acknowledgments
48
+
49
+ We thank the broader atmospheric chemistry modeling community for their feedback, testing, and contributions to making MUSICA a robust and useful tool for scientific research.
50
+
51
+ ---
52
+
53
+ ## Citation Information
54
+
55
+ For citation purposes, please refer to our [CITATION.cff](CITATION.cff) file for the appropriate citations based on your use case. The main citations are:
56
+
57
+ 1. **For the MUSICA vision and scientific framework**: [Pfister et al., 2020](https://doi.org/10.1175/BAMS-D-19-0331.1)
58
+ 2. **For the MUSICA software evaluation**: [Schwantes et al., 2022](https://doi.org/10.1029/2021MS002889)
59
+ 3. **For the software itself**: Use the Zenodo DOI from our latest release