Skip to content
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

Fix an if statement #223

Merged
merged 2 commits into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified run_model_on_snellius/exe/STEMMUS_SCOPE
Binary file not shown.
9 changes: 5 additions & 4 deletions src/STEMMUS_SCOPE.m
Original file line number Diff line number Diff line change
Expand Up @@ -312,12 +312,13 @@
disp('The calculations start now');
end

if GroundwaterSettings.GroundwaterCoupling == 1 % Groundwater coupling is enabled
BoundaryCondition.NBChB = 1;
end

% Actually run the model
if strcmp(bmiMode, 'update') || strcmp(runMode, 'full')

if GroundwaterSettings.GroundwaterCoupling == 1 % Groundwater coupling is enabled
BoundaryCondition.NBChB = 1;
end

% Will do one timestep in "update mode", and run until the end if in "full run" mode.
while KT < endTime
KT = KT + 1; % Counting Number of timesteps
Expand Down
Loading