Skip to content

Commit

Permalink
g_sifrac parameter is time dependent
Browse files Browse the repository at this point in the history
fix conversion of glacier parameter g_sifrac
  • Loading branch information
verseve committed Aug 22, 2022
1 parent 2fb1090 commit eb04b18
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/flextopo_model.jl
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ function initialize_flextopo_model(config::Config)
defaults = 0.001,
type = Float,
fill = 0.0,
)
) .* (Δt / basetimestep)
glacierfrac = ncread(
nc,
config,
Expand Down
2 changes: 1 addition & 1 deletion src/hbv_model.jl
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function initialize_hbv_model(config::Config)
defaults = 0.001,
type = Float,
fill = 0.0,
)
) .* (Δt / basetimestep)
glacierfrac = ncread(
nc,
config,
Expand Down
2 changes: 1 addition & 1 deletion src/sbm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ function initialize_sbm(nc, config, riverfrac, inds)
defaults = 0.001,
type = Float,
fill = 0.0,
)
) .* (Δt / basetimestep)
glacierfrac = ncread(
nc,
config,
Expand Down

0 comments on commit eb04b18

Please sign in to comment.