Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
flexpart
flexpart
Commits
94735e20
Commit
94735e20
authored
May 04, 2017
by
Sabine
Browse files
added switch turboff to run FLEXPART without turbulence
parent
5f53d0e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/advance.f90
View file @
94735e20
...
...
@@ -473,6 +473,14 @@ subroutine advance(itime,nrelpoint,ldt,up,vp,wp, &
delz
=
wp
*
dtf
endif
if
(
turboff
)
then
!sec switch off turbulence
up
=
0.0
vp
=
0.0
wp
=
0.0
delz
=
0.
endif
!****************************************************
! Compute turbulent vertical displacement of particle
!****************************************************
...
...
@@ -674,6 +682,12 @@ subroutine advance(itime,nrelpoint,ldt,up,vp,wp, &
nrand
=
nrand
+1
endif
if
(
turboff
)
then
!sec switch off turbulence
ux
=
0.0
vy
=
0.0
wp
=
0.0
endif
! If particle represents only a single species, add gravitational settling
! velocity. The settling velocity is zero for gases
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment