musica 0.11.1.4__cp312-cp312-win32.whl → 0.12.0__cp312-cp312-win32.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.
- musica/_musica.cp312-win32.pyd +0 -0
- musica/_version.py +1 -1
- musica/constants.py +3 -0
- musica/mechanism_configuration/__init__.py +1 -0
- musica/mechanism_configuration/aqueous_equilibrium.py +101 -0
- musica/mechanism_configuration/arrhenius.py +121 -0
- musica/mechanism_configuration/branched.py +116 -0
- musica/mechanism_configuration/condensed_phase_arrhenius.py +116 -0
- musica/mechanism_configuration/condensed_phase_photolysis.py +91 -0
- musica/mechanism_configuration/emission.py +67 -0
- musica/mechanism_configuration/first_order_loss.py +67 -0
- musica/mechanism_configuration/henrys_law.py +85 -0
- musica/mechanism_configuration/mechanism_configuration.py +161 -0
- musica/mechanism_configuration/phase.py +43 -0
- musica/mechanism_configuration/photolysis.py +83 -0
- musica/mechanism_configuration/reactions.py +61 -0
- musica/mechanism_configuration/simpol_phase_transfer.py +88 -0
- musica/mechanism_configuration/species.py +72 -0
- musica/mechanism_configuration/surface.py +89 -0
- musica/mechanism_configuration/troe.py +137 -0
- musica/mechanism_configuration/tunneling.py +103 -0
- musica/mechanism_configuration/user_defined.py +83 -0
- musica/mechanism_configuration/utils.py +10 -0
- musica/mechanism_configuration/wet_deposition.py +49 -0
- musica/mechanism_configuration.cpp +0 -1
- musica/test/examples/v1/full_configuration/full_configuration.json +30 -15
- musica/test/examples/v1/full_configuration/full_configuration.yaml +16 -1
- musica/test/test_analytical.py +1 -1
- musica/test/test_parser.py +3 -639
- musica/test/test_serializer.py +69 -0
- musica/test/test_util_full_mechanism.py +668 -0
- musica/types.py +1 -4
- {musica-0.11.1.4.dist-info → musica-0.12.0.dist-info}/METADATA +61 -46
- musica-0.12.0.dist-info/RECORD +57 -0
- musica-0.12.0.dist-info/licenses/AUTHORS.md +59 -0
- musica/mechanism_configuration.py +0 -1291
- musica-0.11.1.4.dist-info/RECORD +0 -33
- {musica-0.11.1.4.dist-info → musica-0.12.0.dist-info}/WHEEL +0 -0
- {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.
|
|
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
|
+

|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
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/__init__.py,sha256=-TtiqPge1QqHDQHJLZb1S13378oCvioqxveGFsTG1K4,1799
|
|
2
|
+
musica/_musica.cp312-win32.pyd,sha256=zBxECdQUIhEmcOyiFFbRaYXj4orfhODOuCv_vTYR2xs,1261568
|
|
3
|
+
musica/_version.py,sha256=9e9mHDi2fUgxlhglOE73A-PATsMwCeXLJ4vRvu3ZC2A,20
|
|
4
|
+
musica/binding_common.cpp,sha256=A1Y5LxGjWXi09Eczv06H5iJC-9i0R9eya2ehz2jnD9U,575
|
|
5
|
+
musica/binding_common.hpp,sha256=YAcb9WnfXL7Ps-rR-iMBSwUgBQZfZZdCQQod5CTMEZA,108
|
|
6
|
+
musica/CMakeLists.txt,sha256=qRSE9QuzRR1go16-ujVBHpkdHf-5dCuPZLbCrP7ygHc,1092
|
|
7
|
+
musica/constants.py,sha256=o0PjiiTyGMdCPWmBewiQKaX-JBOR6vkz1n0pAacuZNU,124
|
|
8
|
+
musica/cpu_binding.cpp,sha256=J-9SfvuXeWYvOAwX5luG6f5DieV0pchkutRAJ3xoN2Y,234
|
|
9
|
+
musica/cuda.cpp,sha256=oTG2ZnL-SiW2kx9eL4XJOQGJeIiGuy8tJ5BEoLRWL4M,358
|
|
10
|
+
musica/cuda.py,sha256=6Qe6cBbPN9K5Uqu7wBt18zTUjRIgvnQKBJZr6tHJrs8,234
|
|
11
|
+
musica/gpu_binding.cpp,sha256=sv1_exUAhGRXY0kzT_q-f0Yl_GYgkYRKwmqWGSi0Qx8,238
|
|
12
|
+
musica/mechanism_configuration/__init__.py,sha256=WVIbDCgpAd-jH9TBPou-5tyrdxb5Vbm9Zl2h7xmNiQ8,38
|
|
13
|
+
musica/mechanism_configuration/aqueous_equilibrium.py,sha256=O0QuSk-kwc4DKslOeiqgR0E2YrrJhl_BKI-CwNRQzlM,4861
|
|
14
|
+
musica/mechanism_configuration/arrhenius.py,sha256=oEVg7_5XXpiiSeVEOW3_567gHVekvr8kADOBTSqFokM,5268
|
|
15
|
+
musica/mechanism_configuration/branched.py,sha256=MjWJl86BbhJj7M85QRqhiFIyGwzI9u8R2z_oeOIvYLg,5331
|
|
16
|
+
musica/mechanism_configuration/condensed_phase_arrhenius.py,sha256=rUluAt0z_Q79apJKnpC20Ng9Jk1wk5YPn8tvtzXv0wo,5477
|
|
17
|
+
musica/mechanism_configuration/condensed_phase_photolysis.py,sha256=KTebLSs6Hakd4p4oqkGftHgC9QBIExIrMBS7qi0zk-Y,4483
|
|
18
|
+
musica/mechanism_configuration/emission.py,sha256=ak45GY1NswB3P4BwDxRwIky73krz2vxds9t_rP8PxMI,3013
|
|
19
|
+
musica/mechanism_configuration/first_order_loss.py,sha256=Ign87rhDSOiIWV0fSKhHBP1dNvjwBVoXkZ8_H17pE8g,3115
|
|
20
|
+
musica/mechanism_configuration/henrys_law.py,sha256=tbyKP0p_wI7KzmQHaBnjIbdeObu9LzG9fwMDxJBgWZA,4266
|
|
21
|
+
musica/mechanism_configuration/mechanism_configuration.py,sha256=pfDOUxZyyYNYrBzl-Lg_CoWtvQ4Dst5NMubalFVpkdY,7028
|
|
22
|
+
musica/mechanism_configuration/phase.py,sha256=fN8sicZTRVAcFE4djXaj5Pu_pnb-cjA-BymSx38R16Y,1582
|
|
23
|
+
musica/mechanism_configuration/photolysis.py,sha256=nh_0VXWeIqaBugox-anTbbVpqKikKrLQZzhLmaJJk_A,3827
|
|
24
|
+
musica/mechanism_configuration/reactions.py,sha256=jLGo1ZfD_k3EVRBjIvn6LNGZ-oELLittgAB1tdDB0po,1735
|
|
25
|
+
musica/mechanism_configuration/simpol_phase_transfer.py,sha256=AkKgMyCnLmF3n4ueLi470me8jj2Khd0bOuqj7bbJG68,4335
|
|
26
|
+
musica/mechanism_configuration/species.py,sha256=-Rzfyg5Kg5DzLVoAF5exxAuygilvp2HILu-1iZJFXXM,3995
|
|
27
|
+
musica/mechanism_configuration/surface.py,sha256=nYMdIPtgo3XwPG4zht-BNEY7MOf5rWQ15GMpH0HUo0E,4274
|
|
28
|
+
musica/mechanism_configuration/troe.py,sha256=mtVAJcjF9jX3_3q8Z8rG47DvOIrEMB2e6BtSDImOJQA,6713
|
|
29
|
+
musica/mechanism_configuration/tunneling.py,sha256=KVJD7Ej7PecdP0Q4orm8PzMQtgFyHJhSQnFh17qjmgo,4408
|
|
30
|
+
musica/mechanism_configuration/user_defined.py,sha256=7p7xGbAous_3Ef2qfNnc8d63g0G86GpPOGl-GmGRvrs,3835
|
|
31
|
+
musica/mechanism_configuration/utils.py,sha256=dhMFrydNchhdRrfeJw35oJB8Y5oQJa6p65Z7I127P-8,356
|
|
32
|
+
musica/mechanism_configuration/wet_deposition.py,sha256=_9xKNyHFZpfKPBbpi0L_Hi2dilBZIPAMw1rXY2VmUcs,2232
|
|
33
|
+
musica/mechanism_configuration.cpp,sha256=OI1Ua3xypbSe7dPfL50J9qCyHY1b809bRv1DdXu31Iw,27552
|
|
34
|
+
musica/musica.cpp,sha256=w6kI-mrUqNbJPeYuuPzzsDrb7GsHy2bKNoOt0b8tJTY,8614
|
|
35
|
+
musica/test/examples/v0/config.json,sha256=JDQdrDNRmRXGYlytX1uiSDV1lkYIAneLwlodHKFw-os,85
|
|
36
|
+
musica/test/examples/v0/config.yaml,sha256=r31QbiFE2YDudGxLGpTKnpyveTnlfXeLgJ2qSrQddDY,47
|
|
37
|
+
musica/test/examples/v0/reactions.json,sha256=SmRUE5XOAv0h3HOWg4Fb1swBiZvZ-1hsIrmMCJqEVIk,4380
|
|
38
|
+
musica/test/examples/v0/reactions.yaml,sha256=5QeEkhjeAL_rXxNYCLOuqDUudTmgwLW3NERDupKpj6s,2408
|
|
39
|
+
musica/test/examples/v0/species.json,sha256=klFuYb2vAtWdHfHJVYuIuPe_6LHRTuB0Aw29YhwfCFc,604
|
|
40
|
+
musica/test/examples/v0/species.yaml,sha256=ECT9DDa2GMwhSRaRLxjOiCATTKkTRTPwugRsUjHSytY,302
|
|
41
|
+
musica/test/examples/v1/full_configuration/full_configuration.json,sha256=QgCno36VZANP1FcH25ogeYuBtnesdFcc7Mj6CztK4Ds,9660
|
|
42
|
+
musica/test/examples/v1/full_configuration/full_configuration.yaml,sha256=I-eMC2jSCRQ8AvV2WQeF2y96A6ouNDLrvPjvRZV-AXc,5820
|
|
43
|
+
musica/test/test_analytical.py,sha256=domkY4O00RplSdnFvssqUGtPyoXQiV0cfRaLH3gsQ2c,14131
|
|
44
|
+
musica/test/test_chapman.py,sha256=t6p0CadUy-B4OP7A-EZ9Wz52diuYs5yc9LKiFUS9T6A,3651
|
|
45
|
+
musica/test/test_parser.py,sha256=1lL2DZ7ZT1IBGKG3aAc1P_z5GW3u8oBgP6vn3tGr150,2316
|
|
46
|
+
musica/test/test_serializer.py,sha256=mVOXgUFiN5OmCK-8ramsd4hLAYjgvunqBElRbs6nzyM,2535
|
|
47
|
+
musica/test/test_util_full_mechanism.py,sha256=pDWZhJWdP1Q8iCab9AV7GMNIlNdMdgNuAJRqqRccDuw,24730
|
|
48
|
+
musica/test/tuvx.py,sha256=L8X7rJ09HiRlrhLK6fjircI8tGHnFCZJzVow8He5YOE,126
|
|
49
|
+
musica/tools/prepare_build_environment_linux.sh,sha256=kdcBj9qELh811OzY8o5tQDAnLXJFXqzwIkZmkRAcLFY,1500
|
|
50
|
+
musica/tools/prepare_build_environment_windows.sh,sha256=sBBWhJQaS2zWDVFLIDMNBMOMPw8auXwnwz7nhuB5Q_k,847
|
|
51
|
+
musica/tools/repair_wheel_gpu.sh,sha256=nQueyGNC2qWcBAicjVdAfB6JH4m_51dFOG83vVxke54,1525
|
|
52
|
+
musica/types.py,sha256=aBDIOOF9I3u7_drTJebln0O88z0z9dfRNGWhAhP8_7o,15148
|
|
53
|
+
musica-0.12.0.dist-info/METADATA,sha256=ecoVy_lRUnvTA_JTGQRg8SB3EtlnFMr2Lq_8Ke8X1gs,25995
|
|
54
|
+
musica-0.12.0.dist-info/WHEEL,sha256=Twt6k6Iq5MLawLlqt_rmxVYgadRzJ6CAnLOmGD9IUZc,102
|
|
55
|
+
musica-0.12.0.dist-info/licenses/AUTHORS.md,sha256=1ssAXR4WOMdfl5Or1raPu_2nxHbkwCpxfwJwzpF_cJM,2691
|
|
56
|
+
musica-0.12.0.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
|
57
|
+
musica-0.12.0.dist-info/RECORD,,
|
|
@@ -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
|