Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Méso-NH code
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RODIER Quentin
Méso-NH code
Commits
8e8b3ba0
Commit
8e8b3ba0
authored
6 years ago
by
WAUTELET Philippe
Browse files
Options
Downloads
Patches
Plain Diff
Philippe 08/02/2019: bug fix in ch_f77: missing argument + wrong use of an non initialized value
parent
bcfa4fc7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/MNH/ch_f77.fx90
+11
-9
11 additions, 9 deletions
src/MNH/ch_f77.fx90
with
11 additions
and
9 deletions
src/MNH/ch_f77.fx90
+
11
−
9
View file @
8e8b3ba0
...
...
@@ -20,6 +20,8 @@ C**MODIFIED: 10/01/2019 (P.Wautelet) use newunit argument to open files
C + bug corrections: some files were not closed
C**MODIFIED: 10/01/2019 (P.Wautelet) replace double precision declarations by
C real(kind(0.0d0)) (to allow compilation by NAG compiler)
C**MODIFIED: 08/02/2019 (P.Wautelet) bug fixes: missing argument
C + wrong use of an non initialized value
C!
C!
C!
...
...
@@ -4974,7 +4976,6 @@ c IF(zaird .GT. nzero) aircon(izout) = zaird
* in subroutine.
* Optical depths in Lyman-alpha and SRB will be over-written
* in subroutine la_srb.f
CALL seto2(nz,z,nw,wl,aircol,o2xs1, dto2, kout)
* Ozone optical depths
...
...
@@ -20251,11 +20252,11 @@ c INCLUDE 'params'
mabs = 4
IF (mabs. EQ. 1) CALL no2xs_d(nz,tlev,nw,wl, no2xs)
IF (mabs .EQ. 2) CALL no2xs_jpl94(nz,tlev,nw,wl, no2xs)
IF (mabs .EQ. 3) CALL no2xs_har(nz,tlev,nw,wl, no2xs)
IF (mabs .EQ. 4) CALL no2xs_jpl06a(nz,tlev,nw,wl, no2xs)
IF (mabs .EQ. 5) CALL no2xs_jpl06b(nz,tlev,nw,wl, no2xs)
IF (mabs. EQ. 1) CALL no2xs_d(nz,tlev,nw,wl, no2xs
, kout
)
IF (mabs .EQ. 2) CALL no2xs_jpl94(nz,tlev,nw,wl, no2xs
, kout
)
IF (mabs .EQ. 3) CALL no2xs_har(nz,tlev,nw,wl, no2xs
, kout
)
IF (mabs .EQ. 4) CALL no2xs_jpl06a(nz,tlev,nw,wl, no2xs
, kout
)
IF (mabs .EQ. 5) CALL no2xs_jpl06b(nz,tlev,nw,wl, no2xs
, kout
)
* quantum yields
* myld = 1 NO2_calvert.yld (same as JPL2002)
...
...
@@ -41184,8 +41185,8 @@ c INCLUDE 'params'
* Assumes that O2 = 20.95 % of air density. If desire different O2
* profile (e.g. for upper atmosphere) then can load it here.
DO iz = 1, nz
DO iw =1, nw - 1
DO iz = 1, nz
-1
DO iw =1, nw - 1
dto2(iz,iw) = 0.2095 * cz(iz) * o2xs1(iw)
ENDDO
ENDDO
...
...
@@ -42824,7 +42825,8 @@ c INCLUDE 'params'
* calculation is based on nz-1 layers (not nz).
col(nz-1) = col(nz-1) + 1.E5 * hscale * con(nz)
col(nz) = 0.
* Scale by input surface pressure:
* min value = 1 molec cm-2
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