Skip to content

Commit

Permalink
Merge branch 'main' into fix_issue_195
Browse files Browse the repository at this point in the history
  • Loading branch information
SarahAlidoost committed Oct 17, 2023
2 parents 975e662 + 8e2642f commit dff5a20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/STEMMUS_SCOPE.m
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,8 @@
TOLD_CRIT = [];

% for soil moisture and temperature outputs
Moni_Depth = ModelSettings.NL:-1:1;
Moni_Depth_SM = ModelSettings.NL:-1:1;
monitorDepthTemperature = ModelSettings.NL:-1:1;
monitorDepthSoilMoisture = ModelSettings.NL:-1:1;
Sim_Theta_U = [];
Sim_Temp = [];

Expand Down Expand Up @@ -635,8 +635,8 @@
end

% replace run ObservationPoints, see issue 101
Sim_Theta_U(KT, 1:length(Moni_Depth_SM)) = Theta_UUU(Moni_Depth_SM, 1, KT);
Sim_Temp(KT, 1:length(Moni_Depth)) = TTT(Moni_Depth, KT);
Sim_Theta_U(KT, 1:length(monitorDepthSoilMoisture)) = Theta_UUU(monitorDepthSoilMoisture, 1, KT);
Sim_Temp(KT, 1:length(monitorDepthTemperature)) = TTT(monitorDepthTemperature, KT);
end
if (TEND - TIME) < 1E-3
for i = 1:NN
Expand Down

0 comments on commit dff5a20

Please sign in to comment.