-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add terminal velocities to P3 scheme #370
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #370 +/- ##
==========================================
- Coverage 94.95% 94.89% -0.07%
==========================================
Files 36 36
Lines 1288 1370 +82
==========================================
+ Hits 1223 1300 +77
- Misses 65 70 +5
|
f2c5236
to
1c9b870
Compare
b89e85f
to
6004129
Compare
6004129
to
0945be5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me! There is a small mistake I made in the docs where I cited Chen 2022 but did not mention it but should be a quick fix.
0945be5
to
ca4357b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very readable code, thank you!
Cloudy = "0.4" | ||
DataFrames = "1.6" | ||
DocStringExtensions = "0.8, 0.9" | ||
EnsembleKalmanProcesses = "1.1.5" | ||
ForwardDiff = "0.10" | ||
MLJ = "0.20" | ||
QuadGK = "2.9.4" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does the compat need to be so precise?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably not. - Lets see!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But in a separate PR
|
||
Integrates f(D, c1, c2, c3) dD from x₀ to x_end | ||
""" | ||
function ∫_Γ(x₀::FT, x_end::FT, c1::FT, c2::FT, c3::FT) where {FT} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a great function name!
@@ -9,6 +9,7 @@ DocumenterCitations = "daee34ce-89f3-4625-b898-19384cb65244" | |||
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306" | |||
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed" | |||
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" | |||
QuadGK = "1fd47b50-473d-5c70-9696-f719f8f3bcdc" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This dependency should only be needed in the main Project.toml, unless you use it in the docs directly. The same applies for the test Project.toml
Continuing from #334