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
Méso-NH
Méso-NH code
Commits
06cffd0f
Commit
06cffd0f
authored
3 years ago
by
WAUTELET Philippe
Browse files
Options
Downloads
Patches
Plain Diff
Philippe 19/11/2021: rename ares.f in ares.fx90 + workaround problems due to scripts
parent
76940dac
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/MNH/ares.fx90
+23
-10
23 additions, 10 deletions
src/MNH/ares.fx90
with
23 additions
and
10 deletions
src/MNH/ares.f
→
src/MNH/ares.f
x90
+
23
−
10
View file @
06cffd0f
!MNH_LIC Copyright 1987-201
9
CNRS, Meteo-France and Universite Paul Sabatier
!MNH_LIC Copyright 1987-20
2
1 CNRS, Meteo-France and Universite Paul Sabatier
!MNH_LIC This is part of the Meso-NH software governed by the CeCILL-C licence
!MNH_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt
!MNH_LIC for details. version 1.
...
...
@@ -833,11 +833,8 @@ C....................................................................
C...........PARAMETERS and their descriptions:
INTEGER
NCAT
! number of cations
PARAMETER
(
NCAT
=
2
)
INTEGER
NAN
! number of anions
PARAMETER
(
NAN
=
3
)
INTEGER, PARAMETER :: NCAT = 2 ! number of cations
INTEGER, PARAMETER :: NAN = 3 ! number of anions
C...........ARGUMENTS and their descriptions
...
...
@@ -1374,16 +1371,32 @@ c and the excess ammonium forms ammonum nitrate
end if
c
return
end
end
subroutine awater
c23456789012345678901234567890123456789012345678901234567890123456789012
MODULE MODI_poly4
INTERFACE
function poly4(A,X)
real A(4), X
end function poly4
END INTERFACE
END MODULE MODI_poly4
function poly4(A,X)
real poly4
real A(4), X
poly4 = A(1) + X * ( A(2) + X * ( A(3) + X * ( A(4) )))
return
end
return
end function poly4
MODULE MODI_poly6
INTERFACE
function poly6(A,X)
real A(6), X
end function poly6
END INTERFACE
END MODULE MODI_poly6
function poly6(A,X)
real poly6
...
...
@@ -1391,5 +1404,5 @@ c23456789012345678901234567890123456789012345678901234567890123456789012
poly6 = A(1) + X * ( A(2) + X * ( A(3) + X * ( A(4) +
& X * ( A(5) + X * (A(6) )))))
return
end
! awater
end
function poly6
c //////////////////////////////////////////////////////////////////
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