musica 0.11.1.4__cp312-cp312-win_amd64.whl → 0.12.1__cp312-cp312-win_amd64.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/CMakeLists.txt +28 -2
- musica/__init__.py +9 -49
- musica/_musica.cp312-win_amd64.pyd +0 -0
- musica/_version.py +1 -1
- musica/backend.py +41 -0
- musica/binding_common.cpp +23 -6
- musica/carma.cpp +911 -0
- musica/carma.py +1729 -0
- musica/constants.py +3 -0
- musica/cpu_binding.cpp +2 -1
- musica/cuda.py +4 -1
- musica/examples/__init__.py +1 -0
- musica/examples/carma_aluminum.py +123 -0
- musica/examples/carma_sulfate.py +245 -0
- musica/examples/examples.py +165 -0
- musica/examples/sulfate_box_model.py +439 -0
- musica/examples/ts1_latin_hypercube.py +245 -0
- musica/gpu_binding.cpp +2 -1
- musica/main.py +89 -0
- musica/mechanism_configuration/__init__.py +1 -0
- musica/mechanism_configuration/aqueous_equilibrium.py +274 -0
- musica/mechanism_configuration/arrhenius.py +307 -0
- musica/mechanism_configuration/branched.py +299 -0
- musica/mechanism_configuration/condensed_phase_arrhenius.py +309 -0
- musica/mechanism_configuration/condensed_phase_photolysis.py +88 -0
- musica/mechanism_configuration/emission.py +71 -0
- musica/mechanism_configuration/first_order_loss.py +174 -0
- musica/mechanism_configuration/henrys_law.py +44 -0
- musica/mechanism_configuration/mechanism_configuration.py +234 -0
- musica/mechanism_configuration/phase.py +47 -0
- musica/mechanism_configuration/photolysis.py +88 -0
- musica/mechanism_configuration/reactions.py +73 -0
- musica/mechanism_configuration/simpol_phase_transfer.py +217 -0
- musica/mechanism_configuration/species.py +91 -0
- musica/mechanism_configuration/surface.py +94 -0
- musica/mechanism_configuration/ternary_chemical_activation.py +352 -0
- musica/mechanism_configuration/troe.py +352 -0
- musica/mechanism_configuration/tunneling.py +250 -0
- musica/mechanism_configuration/user_defined.py +88 -0
- musica/mechanism_configuration/utils.py +10 -0
- musica/mechanism_configuration/wet_deposition.py +52 -0
- musica/mechanism_configuration.cpp +184 -96
- musica/musica.cpp +48 -61
- musica/test/examples/v1/full_configuration/full_configuration.json +67 -35
- musica/test/examples/v1/full_configuration/full_configuration.yaml +44 -20
- musica/test/{test_analytical.py → integration/test_analytical.py} +1 -2
- musica/test/integration/test_carma.py +227 -0
- musica/test/integration/test_carma_aluminum.py +11 -0
- musica/test/integration/test_carma_sulfate.py +16 -0
- musica/test/integration/test_sulfate_box_model.py +34 -0
- musica/test/integration/test_tuvx.py +62 -0
- musica/test/unit/test_parser.py +64 -0
- musica/test/unit/test_serializer.py +69 -0
- musica/test/{test_parser.py → unit/test_util_full_mechanism.py} +409 -404
- musica/tools/prepare_build_environment_linux.sh +39 -32
- musica/tools/prepare_build_environment_macos.sh +1 -0
- musica/tuvx.cpp +93 -0
- musica/tuvx.py +199 -0
- musica/types.py +104 -63
- {musica-0.11.1.4.dist-info → musica-0.12.1.dist-info}/METADATA +100 -84
- musica-0.12.1.dist-info/RECORD +69 -0
- {musica-0.11.1.4.dist-info → musica-0.12.1.dist-info}/WHEEL +1 -1
- musica-0.12.1.dist-info/entry_points.txt +3 -0
- musica-0.12.1.dist-info/licenses/AUTHORS.md +59 -0
- musica/mechanism_configuration.py +0 -1291
- musica/test/examples/v0/config.json +0 -7
- musica/test/examples/v0/config.yaml +0 -3
- musica/test/examples/v0/reactions.json +0 -193
- musica/test/examples/v0/reactions.yaml +0 -142
- musica/test/examples/v0/species.json +0 -40
- musica/test/examples/v0/species.yaml +0 -19
- musica/test/tuvx.py +0 -10
- musica/tools/prepare_build_environment_windows.sh +0 -22
- musica-0.11.1.4.dist-info/RECORD +0 -33
- /musica/test/{test_chapman.py → integration/test_chapman.py} +0 -0
- {musica-0.11.1.4.dist-info → musica-0.12.1.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.1
|
|
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,12 +207,24 @@ 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
|
|
211
|
+
Requires-Dist: xarray>=2022.3.0
|
|
212
|
+
Requires-Dist: ussa1976>=v0.3.4
|
|
210
213
|
Provides-Extra: test
|
|
211
214
|
Requires-Dist: numpy; extra == "test"
|
|
212
215
|
Requires-Dist: pytest; extra == "test"
|
|
216
|
+
Requires-Dist: matplotlib; extra == "test"
|
|
213
217
|
Provides-Extra: gpu
|
|
214
218
|
Requires-Dist: nvidia-cublas-cu12; extra == "gpu"
|
|
215
219
|
Requires-Dist: nvidia-cuda-runtime-cu12; extra == "gpu"
|
|
220
|
+
Provides-Extra: tutorial
|
|
221
|
+
Requires-Dist: pandas; extra == "tutorial"
|
|
222
|
+
Requires-Dist: matplotlib; extra == "tutorial"
|
|
223
|
+
Requires-Dist: numpy; extra == "tutorial"
|
|
224
|
+
Requires-Dist: scipy; extra == "tutorial"
|
|
225
|
+
Requires-Dist: seaborn; extra == "tutorial"
|
|
226
|
+
Requires-Dist: dask[distributed]; extra == "tutorial"
|
|
227
|
+
Requires-Dist: dask-jobqueue; extra == "tutorial"
|
|
216
228
|
Description-Content-Type: text/markdown
|
|
217
229
|
|
|
218
230
|
# MUSICA
|
|
@@ -227,19 +239,32 @@ Description-Content-Type: text/markdown
|
|
|
227
239
|
[](https://pypi.org/p/musica)
|
|
228
240
|
[](https://fairsoftwarechecklist.net/v0.2?f=31&a=32113&i=22322&r=123)
|
|
229
241
|
[](https://codecov.io/gh/NCAR/musica)
|
|
242
|
+
[](https://mybinder.org/v2/gh/NCAR/musica/HEAD?filepath=tutorials)
|
|
243
|
+
|
|
230
244
|
|
|
231
245
|
Multi-Scale Infrastructure for Chemistry and Aerosols
|
|
232
246
|
|
|
233
247
|
MUSICA is a collection of modeling software, tools, and grids, that
|
|
234
248
|
allow for robust modeling of chemistry in Earth's atmosphere.
|
|
235
249
|
|
|
236
|
-
At present the project encompasses these components
|
|
250
|
+
At present the project encompasses these core components
|
|
237
251
|
- [TUV-x](https://github.com/NCAR/tuv-x)
|
|
238
252
|
- A photolysis rate calculator
|
|
239
253
|
|
|
240
254
|
- [MICM](https://github.com/NCAR/micm)
|
|
241
255
|
- Model Independent Chemical Module
|
|
242
256
|
|
|
257
|
+
- [CARMA](https://github.com/ESCOMP/CARMA)
|
|
258
|
+
- Community Aerosol and Radiation Model for Atmospheres (integration in development)
|
|
259
|
+
|
|
260
|
+
- [Mechanism Configuration](https://github.com/NCAR/MechanismConfiguration)
|
|
261
|
+
- The standardized format to describe atmospheric chemistry
|
|
262
|
+
|
|
263
|
+
These components are used to drive the MUSICA software ecosystem. This is a snapshot of how MUSICA can be used with different
|
|
264
|
+
models.
|
|
265
|
+
|
|
266
|
+

|
|
267
|
+
|
|
243
268
|
# Installation
|
|
244
269
|
MUSICA is installable via pip for Python or CMake for C++.
|
|
245
270
|
|
|
@@ -247,6 +272,28 @@ MUSICA is installable via pip for Python or CMake for C++.
|
|
|
247
272
|
```
|
|
248
273
|
pip install musica
|
|
249
274
|
```
|
|
275
|
+
|
|
276
|
+
If you would like GPU support, you must first [add the NVIDIA pypi index](https://docs.nvidia.com/cuda/cuda-quick-start-guide/#pip-wheels-linux) and then you can specify the gpu install option for MUSICA. Note that GPU support has only been tested on linux.
|
|
277
|
+
|
|
278
|
+
```
|
|
279
|
+
pip install --upgrade setuptools pip wheel
|
|
280
|
+
pip install nvidia-pyindex
|
|
281
|
+
pip install musica[gpu]
|
|
282
|
+
```
|
|
283
|
+
|
|
284
|
+
To build the package locally,
|
|
285
|
+
|
|
286
|
+
```
|
|
287
|
+
pip install -e .
|
|
288
|
+
```
|
|
289
|
+
|
|
290
|
+
If you have an NVIDIA GPU and cuda installed, you can enable a build of musica with GPU support by setting the environment
|
|
291
|
+
variable `BUILD_GPU`.
|
|
292
|
+
|
|
293
|
+
```
|
|
294
|
+
BUILD_GPU=1 pip install -e .
|
|
295
|
+
```
|
|
296
|
+
|
|
250
297
|
## CMake
|
|
251
298
|
```
|
|
252
299
|
$ git clone https://github.com/NCAR/musica.git
|
|
@@ -260,7 +307,7 @@ $ make install
|
|
|
260
307
|
|
|
261
308
|
# Using the MUSICA Python API
|
|
262
309
|
MUSICA makes its chemical mechanism analysis and visualization available through a Python API. The following example works through solving a simple chemistry system. Please refer to the [official documentation](https://ncar.github.io/musica/index.html) for further tutorials and examples.
|
|
263
|
-
```
|
|
310
|
+
```python
|
|
264
311
|
# --- Import Musica ---
|
|
265
312
|
import musica
|
|
266
313
|
import musica.mechanism_configuration as mc
|
|
@@ -295,7 +342,6 @@ pressure=101000.0
|
|
|
295
342
|
state = solver.create_state()
|
|
296
343
|
state.set_concentrations({"A": 1.0, "B": 3.0, "C": 5.0})
|
|
297
344
|
state.set_conditions(temperature, pressure)
|
|
298
|
-
initial_pressure = state.get_conditions()['air_density'][0] # store for visualization and output
|
|
299
345
|
|
|
300
346
|
# --- 6. Time parameters ---
|
|
301
347
|
time_step = 4 # stepping
|
|
@@ -343,17 +389,13 @@ import matplotlib.pyplot as plt
|
|
|
343
389
|
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
390
|
plt.show()
|
|
345
391
|
```
|
|
346
|
-
# Available grids
|
|
347
392
|
|
|
393
|
+
# Available grids
|
|
348
394
|
Pre-made grids for use in MUSICA are available [here](https://wiki.ucar.edu/display/MUSICA/Available+Grids).
|
|
349
395
|
|
|
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
396
|
## Developer Options
|
|
355
397
|
|
|
356
|
-
### Specifying dependency versions via
|
|
398
|
+
### Specifying dependency versions via parameterization at configure time
|
|
357
399
|
|
|
358
400
|
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
401
|
|
|
@@ -362,9 +404,10 @@ Introduced in [Pull Request #124](https://github.com/NCAR/musica/pull/124), it i
|
|
|
362
404
|
| Musica Dependency | Repository | Branch, Tag or Hash|
|
|
363
405
|
| ------------------------------------------------------ | --------------------------|--------------------|
|
|
364
406
|
| [Google Test](https://github.com/google/googletest.git)| GOOGLETEST_GIT_REPOSITORY | GOOGLETEST_GIT_TAG |
|
|
365
|
-
| [MICM](https://github.com/NCAR/
|
|
407
|
+
| [MICM](https://github.com/NCAR/micm.git) | MICM_GIT_REPOSITORY | MICM_GIT_TAG |
|
|
366
408
|
| [TUV-X](https://github.com/NCAR/tuv-x.git) | TUVX_GIT_REPOSITORY | TUVX_GIT_TAG |
|
|
367
409
|
| [PyBind11](https://github.com/pybind/pybind11) | PYBIND11_GIT_REPOSITORY | PYBIND11_GIT_TAG |
|
|
410
|
+
| [Mechanism Configuration](https://github.com/NCAR/MechanismConfiguration.git) | MECH_CONFIG_GIT_REPOSITORY | MECH_CONFIG_GIT_TAG |
|
|
368
411
|
|
|
369
412
|
#### Example Usage
|
|
370
413
|
|
|
@@ -381,76 +424,49 @@ Specifying a specific version of `tuv-x` by has, but using the official reposito
|
|
|
381
424
|
$ cmake .. \
|
|
382
425
|
-DTUVX_GIT_TAG=a6b2c4d8745
|
|
383
426
|
|
|
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
|
-
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
|
-
```
|
|
427
|
+
# Contributing
|
|
428
|
+
|
|
429
|
+
We welcome contributions from the community! Please see our [Contributing Guide](CONTRIBUTING.md) for information on how to get involved.
|
|
430
|
+
|
|
431
|
+
For a complete list of contributors and authors, see [AUTHORS.md](AUTHORS.md).
|
|
432
|
+
|
|
433
|
+
# Citations
|
|
434
|
+
|
|
435
|
+
MUSICA can be cited in at least two ways:
|
|
436
|
+
|
|
437
|
+
1. **Cite the foundational paper** that defines the vision of the MUSICA software:
|
|
438
|
+
- [Pfister et al., 2020, Bulletin of the American Meteorological Society](https://doi.org/10.1175/BAMS-D-19-0331.1)
|
|
439
|
+
- Use the following BibTeX entry:
|
|
440
|
+
```
|
|
441
|
+
@Article { acom.software.musica-vision,
|
|
442
|
+
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",
|
|
443
|
+
title = "The Multi-Scale Infrastructure for Chemistry and Aerosols (MUSICA)",
|
|
444
|
+
journal = "Bulletin of the American Meteorological Society",
|
|
445
|
+
year = "2020",
|
|
446
|
+
publisher = "American Meteorological Society",
|
|
447
|
+
address = "Boston MA, USA",
|
|
448
|
+
volume = "101",
|
|
449
|
+
number = "10",
|
|
450
|
+
doi = "10.1175/BAMS-D-19-0331.1",
|
|
451
|
+
pages= "E1743 - E1760",
|
|
452
|
+
url = "https://journals.ametsoc.org/view/journals/bams/101/10/bamsD190331.xml"
|
|
453
|
+
}
|
|
454
|
+
```
|
|
455
|
+
|
|
456
|
+
2. **Cite the MUSICA software and its evaluation** (MUSICAv0):
|
|
457
|
+
- [Schwantes et al., 2022, Journal of Advances in Modeling Earth Systems](https://doi.org/10.1029/2021MS002889)
|
|
458
|
+
- Use the following BibTeX entry:
|
|
459
|
+
```
|
|
460
|
+
@Article{acom.software.musica,
|
|
461
|
+
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},
|
|
462
|
+
title = {Evaluating the Impact of Chemical Complexity and Horizontal Resolution on Tropospheric Ozone Over the Conterminous US With a Global Variable Resolution Chemistry Model},
|
|
463
|
+
journal = {Journal of Advances in Modeling Earth Systems},
|
|
464
|
+
volume = {14},
|
|
465
|
+
number = {6},
|
|
466
|
+
pages = {e2021MS002889},
|
|
467
|
+
doi = {https://doi.org/10.1029/2021MS002889},
|
|
468
|
+
url = {https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/2021MS002889},
|
|
469
|
+
eprint = {https://agupubs.onlinelibrary.wiley.com/doi/pdf/10.1029/2021MS002889},
|
|
470
|
+
year = {2022}
|
|
471
|
+
}
|
|
472
|
+
```
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
musica/__init__.py,sha256=pSZ-H2IJ4EEYIbQDygjGwjhGySXdeifB1DzQBMJzz2g,403
|
|
2
|
+
musica/_musica.cp312-win_amd64.pyd,sha256=wKnuAs4nhh6fKr0wp6x0ZyCAIdpYNmx4qtQ-In_umn0,1570816
|
|
3
|
+
musica/_version.py,sha256=RtCQ8kIuMhcZYVMe49ceaEtTSjdzpfPWuCJXoyjaKg0,20
|
|
4
|
+
musica/backend.py,sha256=Fw3-HECqsifQmvRonDTGeEZqS-KXYD09BCwBue_HwfM,1081
|
|
5
|
+
musica/binding_common.cpp,sha256=qrJCfdePt-ZoIgCTrPJqSUF1Ie8Mq7b7S2_pEdpi4CE,1013
|
|
6
|
+
musica/binding_common.hpp,sha256=YAcb9WnfXL7Ps-rR-iMBSwUgBQZfZZdCQQod5CTMEZA,108
|
|
7
|
+
musica/carma.cpp,sha256=v6f2MF1PUGHR46vVZ544o6bEZjCTI2rWvtgL8M0oSns,43244
|
|
8
|
+
musica/carma.py,sha256=FNd4pWJQJ8VJoo2LSl2aXUVSfLZFgABTSKqtTE-Cgv4,68716
|
|
9
|
+
musica/CMakeLists.txt,sha256=MTZYtahh4tLpn6adVKZ9oZ9g-np7Hw8-VHiaFaA-lIM,1817
|
|
10
|
+
musica/constants.py,sha256=sQqh1UVu2HRvl25qWPW0ACT8NrHe_r4Ugy-v_BiTGG4,126
|
|
11
|
+
musica/cpu_binding.cpp,sha256=Cy06zLErMV0g7Ol9Fg-q2cpG-g5fb8hcBl-M-ihHLyk,236
|
|
12
|
+
musica/cuda.cpp,sha256=oTG2ZnL-SiW2kx9eL4XJOQGJeIiGuy8tJ5BEoLRWL4M,358
|
|
13
|
+
musica/cuda.py,sha256=ClHKnSNiU8SX0BANh5KybismYHH6mFUyC-3r8S9qARo,271
|
|
14
|
+
musica/examples/__init__.py,sha256=y9FNR3NhT9OYCk7S_kktyOSpkRqwQb-VLNiaMp0rbz0,30
|
|
15
|
+
musica/examples/carma_aluminum.py,sha256=QTdJpcpvoyR4HbliFqfuEIwRHGT0v3NUjC9tiTv1mnc,3806
|
|
16
|
+
musica/examples/carma_sulfate.py,sha256=_LgXOupxsLD6UkziRw40nDsDXPFbmKH-8VyPXaqnUD0,8363
|
|
17
|
+
musica/examples/examples.py,sha256=xWnFSNMYPpUhz04YtSSNsr6DoxmQoOdUtTT9GSUm3ps,5901
|
|
18
|
+
musica/examples/sulfate_box_model.py,sha256=AlQ_30dMLf4wbs9pGWw6y9bxNUHLVIsdJlx9fbC-LKk,17107
|
|
19
|
+
musica/examples/ts1_latin_hypercube.py,sha256=yQIUZJiNnJx5yF_pW9RWq9uZNECQagKDFJdEvl9-17w,9866
|
|
20
|
+
musica/gpu_binding.cpp,sha256=X0qISrKYz7Ldjn5UnqNw8oLzOY4VgyF3fUUszm-QSJI,240
|
|
21
|
+
musica/main.py,sha256=gVCfeh44VL4EH7eFRR2wU_I_kANB94furojDi-0LhoE,2797
|
|
22
|
+
musica/mechanism_configuration/__init__.py,sha256=odlwrCvBBnqUBi951RysExLDYqK_AfqP4nRY90MQpcc,40
|
|
23
|
+
musica/mechanism_configuration/aqueous_equilibrium.py,sha256=60b017VeO9MrzYnkF47hzjQJRdD7k3M6L3S94SKqmAE,11270
|
|
24
|
+
musica/mechanism_configuration/arrhenius.py,sha256=eIDPb485TzsRAvz2bYIjwI7n8ofhahUpCP5HRO-o00E,11479
|
|
25
|
+
musica/mechanism_configuration/branched.py,sha256=g7IsOzaTK1hLWYn1agGzAPRhM0pIsz5fM0pOfVzDyKA,12061
|
|
26
|
+
musica/mechanism_configuration/condensed_phase_arrhenius.py,sha256=bXXu1ctDYiZ4yrzTu2b28R-sstYIXZGNruyMxM31qFQ,11745
|
|
27
|
+
musica/mechanism_configuration/condensed_phase_photolysis.py,sha256=S-J-e4-9TYw_tE1iLEqp1wDohJVx7Vkblc9kxWrXfBc,4203
|
|
28
|
+
musica/mechanism_configuration/emission.py,sha256=GOlyzDqk4-_jDZn7poYJ3Rxo-KSTaPxEO7P_SBzS_xQ,3115
|
|
29
|
+
musica/mechanism_configuration/first_order_loss.py,sha256=4dPG2YKeEHjJkc0biV8tGy3vLxY5f2PTeLFt6cRAuRM,6815
|
|
30
|
+
musica/mechanism_configuration/henrys_law.py,sha256=vuLlqRFwThUJ9icvKJkEWXKvC9cj7ldTzDpWMXBJHQ4,1607
|
|
31
|
+
musica/mechanism_configuration/mechanism_configuration.py,sha256=bLLSsdZAyn01VPbQeSJX8RpKWJoBkH7zjtUsCaCzXKw,10671
|
|
32
|
+
musica/mechanism_configuration/phase.py,sha256=j7sPiVPxpaPeHwoo3SMhBgIuAWlXmKgBLpTjBbhZV3E,1680
|
|
33
|
+
musica/mechanism_configuration/photolysis.py,sha256=7C3RDJ7_iFsfC_duyfl47VMsAS-EHhVdj4QExo5u7mU,3971
|
|
34
|
+
musica/mechanism_configuration/reactions.py,sha256=1YbmKH2tL82ZmUdOvs6vNV9r_1GwtVHtiEZwdgrYSrI,2440
|
|
35
|
+
musica/mechanism_configuration/simpol_phase_transfer.py,sha256=BneQwt4cfyBicxOXFarGqFNjJI9x0VaW1iReLy2h4DQ,9278
|
|
36
|
+
musica/mechanism_configuration/species.py,sha256=dPsBPcc_E7yzxtojw3DiBP3JvUMSjmMsqH89h74ZMuk,5544
|
|
37
|
+
musica/mechanism_configuration/surface.py,sha256=vJBW-brrcdzABeUV5DQSS4xli0KjB_K32sW0dnnxRGo,4440
|
|
38
|
+
musica/mechanism_configuration/ternary_chemical_activation.py,sha256=rbhzhmbvewf2Q6hf3_4TcuMiQaoWiOpCzTzWPKXWE5A,14675
|
|
39
|
+
musica/mechanism_configuration/troe.py,sha256=s3nTWbhRiJ2NiEhPH_Bjlyw-NP9eYy3EASN6WIeLfVQ,13959
|
|
40
|
+
musica/mechanism_configuration/tunneling.py,sha256=LpSRmTjFoniIcS2D-qPL9HKaRSZ1YmxbjHCevm6fKHA,9628
|
|
41
|
+
musica/mechanism_configuration/user_defined.py,sha256=dUuSpj4rc9XRuD8FZJ9CX4DFjvQcUCNt5Krrn0cj-_I,3980
|
|
42
|
+
musica/mechanism_configuration/utils.py,sha256=dhMFrydNchhdRrfeJw35oJB8Y5oQJa6p65Z7I127P-8,356
|
|
43
|
+
musica/mechanism_configuration/wet_deposition.py,sha256=cP8WL6T3FjGF01lyf1tNsJllaHQEOciCX8yZraBycIc,2306
|
|
44
|
+
musica/mechanism_configuration.cpp,sha256=wwH5dDG7AuXRk4-ZZGPYwcAc_EpOwoXYdfje2hOobOE,29712
|
|
45
|
+
musica/musica.cpp,sha256=CMPdG_ddcEhW5r7u-DDjqGAGM97zHd_7h6wk_o5t0Qk,8584
|
|
46
|
+
musica/test/examples/v1/full_configuration/full_configuration.json,sha256=zBC3EVwIWtBy5t3FOIrqMNOsRaNRXth0kCqBps4PxCs,9902
|
|
47
|
+
musica/test/examples/v1/full_configuration/full_configuration.yaml,sha256=XY6TW78rus0DyrI70NR3yvTeUIPff8_I9ErOXy2m3KE,5911
|
|
48
|
+
musica/test/integration/test_analytical.py,sha256=eOPb3DtjQEodTZCpjelw1LQZM_VyhFi2TOlx1bmEtkk,14129
|
|
49
|
+
musica/test/integration/test_carma.py,sha256=itPJNxSRp7FHJokYSicZFgqzBBrZ9dr1TDxawDPT9BM,7092
|
|
50
|
+
musica/test/integration/test_carma_aluminum.py,sha256=qDbFtD7b1q7zW8I_8Fky9tQLevVrQ5DBLxeVyD5OEGY,364
|
|
51
|
+
musica/test/integration/test_carma_sulfate.py,sha256=-xChTCI0eLFOWKNQx6KHq8RJ_KgU4cP1nP92_qHn0-M,755
|
|
52
|
+
musica/test/integration/test_chapman.py,sha256=t6p0CadUy-B4OP7A-EZ9Wz52diuYs5yc9LKiFUS9T6A,3651
|
|
53
|
+
musica/test/integration/test_sulfate_box_model.py,sha256=3hb63Tij05VX__CIRT-njNkGgZp57Vo0ieUI7_DC1Fo,1638
|
|
54
|
+
musica/test/integration/test_tuvx.py,sha256=6MU5RrbNpX_I5VHTDUTreCGdL9c9y3voy68QurVazNI,1980
|
|
55
|
+
musica/test/unit/test_parser.py,sha256=PF7GPddM4-Mbz0qjzqRvl_YSISj-VQR49MGXLfe8dDg,2667
|
|
56
|
+
musica/test/unit/test_serializer.py,sha256=y6u_e2uJm9TGpn7B3x8_LobVGxIFyuKzF-WrIfP1Ewo,2527
|
|
57
|
+
musica/test/unit/test_util_full_mechanism.py,sha256=O7nJjpIt1k-pxUNj4zBiLdSXruyhj8qfbp8Me75kPJg,25915
|
|
58
|
+
musica/tools/prepare_build_environment_linux.sh,sha256=IPNqU0d9cNJQkIU4L7bTO7kqBSUSq69wwPoLE-dU0AE,1671
|
|
59
|
+
musica/tools/prepare_build_environment_macos.sh,sha256=Yhhd-8W6YvR79NabEqixexU6BsClNf7DH_EYYlsmeMo,41
|
|
60
|
+
musica/tools/repair_wheel_gpu.sh,sha256=nQueyGNC2qWcBAicjVdAfB6JH4m_51dFOG83vVxke54,1525
|
|
61
|
+
musica/tuvx.cpp,sha256=vvRi7T8TLZ-U8H7R-jrWIEmHBexXlms-0abhPGibnC8,3108
|
|
62
|
+
musica/tuvx.py,sha256=6EDOULrBc2cojLgK-lNKH68YVHQyOFpBC-jkGYuaraY,6587
|
|
63
|
+
musica/types.py,sha256=R7Iv3iNdp5V3sLABdsnKJm8ShEjY1LbSrjhPY-qe8mE,17029
|
|
64
|
+
musica-0.12.1.dist-info/METADATA,sha256=IShAL_zZWoCFHuV_iXTdW9V9lcjy1QF_ADT_o1EGaIE,26322
|
|
65
|
+
musica-0.12.1.dist-info/WHEEL,sha256=TcMXEVBP2SQds4YZwJ6flDTTNRzCE5owNAganfIqM0g,106
|
|
66
|
+
musica-0.12.1.dist-info/entry_points.txt,sha256=t9qRU9Ya63_yYMKJkTiVS5kCaW6dDDr0wuQ26lgXTH8,49
|
|
67
|
+
musica-0.12.1.dist-info/licenses/AUTHORS.md,sha256=1ssAXR4WOMdfl5Or1raPu_2nxHbkwCpxfwJwzpF_cJM,2691
|
|
68
|
+
musica-0.12.1.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
|
69
|
+
musica-0.12.1.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
|