Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LAKE
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Andrey Klenin
LAKE
Commits
3a0ca22b
Commit
3a0ca22b
authored
4 years ago
by
Victor Stepanenko
Browse files
Options
Downloads
Patches
Plain Diff
Analytical model for neutral river flow is started
parent
8046e9d5
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/model/turb_mod.f90
+14
-0
14 additions, 0 deletions
source/model/turb_mod.f90
with
14 additions
and
0 deletions
source/model/turb_mod.f90
+
14
−
0
View file @
3a0ca22b
...
@@ -1836,5 +1836,19 @@ enddo
...
@@ -1836,5 +1836,19 @@ enddo
END
SUBROUTINE
ED_TEMP_HOSTETLER2
END
SUBROUTINE
ED_TEMP_HOSTETLER2
!> An analytical model for neutrally stratified river flow using Obukhov coordinate
SUBROUTINE
ZIRIVMODEL
(
M
,
h1
,
u_star_surf
,
gradp
,
z_half
,
eps_ziriv
)
use
PHYS_CONSTANTS
,
only
:
kappa
use
NUMERIC_PARAMS
,
only
:
pi
implicit
none
integer
(
kind
=
iintegers
),
intent
(
in
)
::
M
!> Number of layers
real
(
kind
=
ireals
),
intent
(
in
)
::
h1
!> Riverflow depth, m
real
(
kind
=
ireals
),
intent
(
in
)
::
u_star_surf
!> Friction velocity in water at the surface, m/s
real
(
kind
=
ireals
),
intent
(
in
)
::
gradp
!> Longitudinal pressure gradient, Pa/m
real
(
kind
=
ireals
),
intent
(
in
)
::
z_half
(
1
:
M
)
!> A set of depths where analytical solution is to be evaluated
real
(
kind
=
ireals
),
intent
(
out
)
::
eps_ziriv
(
1
:
M
)
!> TKE dissipation rate, m**2/s**3
END
SUBROUTINE
ZIRIVMODEL
END
MODULE
TURB
END
MODULE
TURB
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