Skip to content

Commit

Permalink
Fix grc structure (model for reunion). remove leaking from slow trans…
Browse files Browse the repository at this point in the history
…fert reservoir cl, because the model calibration was done with this structure
  • Loading branch information
maximejay committed Nov 13, 2024
1 parent 9a5587a commit b0fff3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/source/math_num_documentation/forward_structure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ Hydrological processes can be described at pixel scale in `smash` with one of th
\begin{eqnarray}
&p_{rr}(x, t)& &=& &0.6 \times 0.9(p_r(x, t) + p_{erc}(x, t)) + l_{exc}(x, t)\\
&p_{rl}(x, t)& &=& &0.4 \times 0.9(p_r(x, t) + p_{erc}(x, t)) + l_{exc}(x, t)\\
&p_{rl}(x, t)& &=& &0.4 \times 0.9(p_r(x, t) + p_{erc}(x, t)) \\
&p_{rd}(x, t)& &=& &0.1(p_r(x, t) + p_{erc}(x, t))
\end{eqnarray}
Expand Down
2 changes: 1 addition & 1 deletion smash/fcore/operator/md_gr_operator.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1577,7 +1577,7 @@ subroutine grc_time_step(setup, mesh, input_data, options, returns, time_step, a
end if

prr = 0.6_sp*0.9_sp*(pr + perc) + l
prl = 0.4_sp*0.9_sp*(pr + perc) + l
prl = 0.4_sp*0.9_sp*(pr + perc)
prd = 0.1_sp*(pr + perc)

call gr_transfer(5._sp, ac_prcp(k), prr, ac_ct(k), ac_ht(k), qr)
Expand Down

0 comments on commit b0fff3f

Please # to comment.