Skip to content

Commit

Permalink
Merge branch 'al/AIDA_HOM_UKI' of https://github.com/CliMA/CloudMicro…
Browse files Browse the repository at this point in the history
…physics.jl into al/AIDA_HOM_UKI
  • Loading branch information
amylu00 committed Oct 14, 2024
2 parents 03a4493 + 98bdc5a commit 902d913
Show file tree
Hide file tree
Showing 39 changed files with 969 additions and 1,030 deletions.
2 changes: 1 addition & 1 deletion .buildkite/longruns/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
agents:
queue: new-central
slurm_mem: 8G
modules: climacommon/2024_05_27
modules: climacommon/2024_10_09

env:
OPENBLAS_NUM_THREADS: 1
Expand Down
2 changes: 1 addition & 1 deletion .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
agents:
queue: new-central
slurm_mem: 8G
modules: climacommon/2024_05_27
modules: climacommon/2024_10_09

env:
OPENBLAS_NUM_THREADS: 1
Expand Down
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,16 @@ jobs:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/cache@v1
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/cache@v2
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
file: lcov.info
token: ${{secrets.CODECOV_TOKEN}}
1 change: 1 addition & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
DocumenterCitations = "daee34ce-89f3-4625-b898-19384cb65244"
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
Measures = "442fdcdd-2543-5da2-b0f3-8c86c306513e"
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Expand Down
4 changes: 2 additions & 2 deletions docs/bibliography.bib
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ @article{MitchellHeymsfield2005
year = {2005},
volume = {62},
number = {5},
doi = {https://doi.org/10.1175/JAS3413.1},
doi = {10.1175/JAS3413.1},
pages= {1637--1644}
}

Expand Down Expand Up @@ -732,7 +732,7 @@ @article{Liu1997
volume = {123},
number = {542},
pages = {1789-1795},
doi = {https://doi.org/10.1002/qj.49712354220},
doi = {10.1002/qj.49712354220},
year = {1997}
}

Expand Down
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Parameterizations = [
"1-moment precipitation microphysics" => "Microphysics1M.md",
"2-moment precipitation microphysics" => "Microphysics2M.md",
"P3 Scheme" => "P3Scheme.md",
"Terminal Velocity" => "TerminalVelocity.md",
"Non-equilibrium cloud formation" => "MicrophysicsNonEq.md",
"Smooth transition at thresholds" => "ThresholdsTransition.md",
"Aerosol activation" => "AerosolActivation.md",
Expand Down
9 changes: 6 additions & 3 deletions docs/src/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ MicrophysicsNonEq
MicrophysicsNonEq.τ_relax
MicrophysicsNonEq.conv_q_vap_to_q_liq_ice
MicrophysicsNonEq.conv_q_vap_to_q_liq_ice_MM2015
MicrophysicsNonEq.terminal_velocity
```

# 0-moment precipitation microphysics
Expand Down Expand Up @@ -131,9 +132,11 @@ Common.H2SO4_soln_saturation_vapor_pressure
Common.a_w_xT
Common.a_w_eT
Common.a_w_ice
Common.Chen2022_vel_add
Common.Chen2022_vel_coeffs_small
Common.Chen2022_vel_coeffs_large
Common.Chen2022_monodisperse_pdf
Common.Chen2022_exponential_pdf
Common.Chen2022_vel_coeffs_B1
Common.Chen2022_vel_coeffs_B2
Common.Chen2022_vel_coeffs_B4
```

# Parameters
Expand Down
Loading

0 comments on commit 902d913

Please sign in to comment.