Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Summa Actors
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Numerical_Simulations_Lab
Actors
Summa Actors
Commits
0e3a3d3d
Commit
0e3a3d3d
authored
11 months ago
by
Kyle Klenk
Browse files
Options
Downloads
Patches
Plain Diff
fix timestep issue
parent
0f1a2d81
No related branches found
Branches containing commit
No related tags found
1 merge request
!7
Data assimilation mode
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
build/source/hru_actor/hru_modelRun.f90
+6
-1
6 additions, 1 deletion
build/source/hru_actor/hru_modelRun.f90
with
6 additions
and
1 deletion
build/source/hru_actor/hru_modelRun.f90
+
6
−
1
View file @
0e3a3d3d
...
...
@@ -211,7 +211,12 @@ subroutine runPhysics(&
!****************************** From run_oneHRU *******************************
!******************************************************************************
! water pixel: do nothing
if
(
hru_data
%
typeStruct
%
var
(
iLookTYPE
%
vegTypeIndex
)
==
isWater
)
return
if
(
hru_data
%
typeStruct
%
var
(
iLookTYPE
%
vegTypeIndex
)
==
isWater
)
then
! Set wall_clock time to zero so it does not get a random value
wallTimeTimeStep
=
0._dp
hru_data
%
diagStruct
%
var
(
iLookDIAG
%
wallClockTime
)
%
dat
(
1
)
=
0._dp
return
endif
! get height at bottom of each soil layer, negative downwards (used in Noah MP)
allocate
(
zSoilReverseSign
(
nSoil
),
stat
=
err
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment