Skip to content

Commit

Permalink
Merge pull request #19 from junhyukjeon/master
Browse files Browse the repository at this point in the history
Allow shoot growth post-coppicing
  • Loading branch information
junhyukjeon authored Oct 1, 2024
2 parents e0512fc + d9acd70 commit 480999a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/Manifest.toml
/.DS_Store
/test.ipynb
/poplar.ipynb
4 changes: 2 additions & 2 deletions src/phenology/shooting.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
shoot_max => 1e4 ~ preserve(parameter, u"kg/ha")

shooting(F, Rf, shoot_max, shoot, WS) => begin
false
# (F >= Rf) && (shoot_max >= shoot) && (WS <= shoot_max)
# false
(F >= Rf) && (shoot_max >= shoot) && (WS <= shoot_max)
end ~ flag

ShD(T_air, T_shoot, T_shoot_opt): shooting_degrees => begin
Expand Down

0 comments on commit 480999a

Please sign in to comment.