-
Notifications
You must be signed in to change notification settings - Fork 6
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
Correct precipitation equation #1088
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -149,19 +149,21 @@ plt.show() | |
The precipitation term is given by | ||
|
||
$$ | ||
Q_P = P \cdot A(u). | ||
Q_P = P \cdot A | ||
$$ {#eq-precip} | ||
|
||
Here $P = P(t)$ is the precipitation rate and $A$ is the wetted area. $A$ is a | ||
function of the storage $u = u(t)$: as the volume of water changes, the area of the free water | ||
surface may change as well, depending on the slopes of the surface waters. | ||
Here $P = P(t)$ is the precipitation rate and $A$ is the maximum area given in the `Basin / profile` table. | ||
Precipitation in the Basin area is assumed to be directly added to the Basin storage. | ||
The modeler needs to ensure all precipitation enters the model, and there is no overlap in the maximum profile areas, else extra water is created. | ||
If a part of the catchment is not in any Basin profile, the modeler has to verify that water source is not forgotten. | ||
It can for instance be converted to a flow rate and added to a Basin as a FlowBoundary. | ||
|
||
## Evaporation | ||
|
||
The evaporation term is given by | ||
|
||
$$ | ||
Q_E = E_\text{pot} \cdot A(u) \cdot \phi(d;0.1). | ||
Q_E = E_\text{pot} \cdot A(u) \cdot \phi(d;0.1) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In a scientific writing course I was thought that equations in this context must be treated as part of the sentence, and so there should be a period at the end of the equation. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Interesting, I didn't know. I added them back. There do seems to be quite some equations without dots though. |
||
$$ {#eq-evap} | ||
|
||
Here $E_\text{pot} = E_\text{pot}(t)$ is the potential evaporation rate and $A$ is the wetted area. $\phi$ is the [reduction factor](equations.qmd#sec-reduction_factor) which depends on the depth $d$. It provides a smooth gradient as $u \rightarrow 0$. | ||
|
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.
Is it really the maximum area that is used? Considering
it depends on the ordering of these vectors.
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.
Indeed it depends on the ordering, but that is enforced to be increasing. We rely on these orderings in many places in the code, so I don't think an explicit max is needed.
https://deltares.github.io/Ribasim/core/usage.html#basin-profile