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
2b868f76
Commit
2b868f76
authored
2 years ago
by
WAUTELET Philippe
Browse files
Options
Downloads
Patches
Plain Diff
Philippe 06/03/2023: stations/profilers: add altitude in diachronic files
parent
dba01aeb
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/write_stationn.f90
+4
-2
4 additions, 2 deletions
src/MNH/write_stationn.f90
with
4 additions
and
2 deletions
src/MNH/write_stationn.f90
+
4
−
2
View file @
2b868f76
!MNH_LIC Copyright 2002-202
2
CNRS, Meteo-France and Universite Paul Sabatier
!MNH_LIC Copyright 2002-202
3
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 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 version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt
!MNH_LIC for details. version 1.
!MNH_LIC for details. version 1.
...
@@ -319,7 +319,7 @@ type(tfieldmetadata_base), dimension(:), allocatable :: tzfields
...
@@ -319,7 +319,7 @@ type(tfieldmetadata_base), dimension(:), allocatable :: tzfields
!
!
!----------------------------------------------------------------------------
!----------------------------------------------------------------------------
!
!
IPROC
=
8
+
SIZE
(
TPSTATION
%
XR
,
2
)
+
SIZE
(
TPSTATION
%
XSV
,
2
)
IPROC
=
9
+
SIZE
(
TPSTATION
%
XR
,
2
)
+
SIZE
(
TPSTATION
%
XSV
,
2
)
IF
(
CTURB
==
'TKEL'
)
IPROC
=
IPROC
+
1
IF
(
CTURB
==
'TKEL'
)
IPROC
=
IPROC
+
1
IF
(
LDIAG_SURFRAD
)
THEN
IF
(
LDIAG_SURFRAD
)
THEN
...
@@ -350,11 +350,13 @@ call Add_point( 'P', 'Pressure', 'Pa', tpstation%xp(:) )
...
@@ -350,11 +350,13 @@ call Add_point( 'P', 'Pressure', 'Pa', tpstation%xp(:) )
if
(
lcartesian
)
then
if
(
lcartesian
)
then
call
Add_point
(
'X'
,
'X Pos'
,
'm'
,
SPREAD
(
tpstation
%
xx
,
1
,
istore
)
)
call
Add_point
(
'X'
,
'X Pos'
,
'm'
,
SPREAD
(
tpstation
%
xx
,
1
,
istore
)
)
call
Add_point
(
'Y'
,
'Y Pos'
,
'm'
,
SPREAD
(
tpstation
%
xy
,
1
,
istore
)
)
call
Add_point
(
'Y'
,
'Y Pos'
,
'm'
,
SPREAD
(
tpstation
%
xy
,
1
,
istore
)
)
call
Add_point
(
'Z'
,
'altitude'
,
'm'
,
SPREAD
(
tpstation
%
xz
,
1
,
istore
)
)
call
Add_point
(
'U'
,
'Axial velocity'
,
'm s-1'
,
tpstation
%
xzon
(:)
)
call
Add_point
(
'U'
,
'Axial velocity'
,
'm s-1'
,
tpstation
%
xzon
(:)
)
call
Add_point
(
'V'
,
'Transversal velocity'
,
'm s-1'
,
tpstation
%
xmer
(:)
)
call
Add_point
(
'V'
,
'Transversal velocity'
,
'm s-1'
,
tpstation
%
xmer
(:)
)
else
else
call
Add_point
(
'LON'
,
'Longitude'
,
'degree'
,
SPREAD
(
tpstation
%
xlon
,
1
,
istore
)
)
call
Add_point
(
'LON'
,
'Longitude'
,
'degree'
,
SPREAD
(
tpstation
%
xlon
,
1
,
istore
)
)
call
Add_point
(
'LAT'
,
'Latitude'
,
'degree'
,
SPREAD
(
tpstation
%
xlat
,
1
,
istore
)
)
call
Add_point
(
'LAT'
,
'Latitude'
,
'degree'
,
SPREAD
(
tpstation
%
xlat
,
1
,
istore
)
)
call
Add_point
(
'Z'
,
'altitude'
,
'm'
,
SPREAD
(
tpstation
%
xz
,
1
,
istore
)
)
call
Add_point
(
'ZON_WIND'
,
'Zonal wind'
,
'm s-1'
,
tpstation
%
xzon
(:)
)
call
Add_point
(
'ZON_WIND'
,
'Zonal wind'
,
'm s-1'
,
tpstation
%
xzon
(:)
)
call
Add_point
(
'MER_WIND'
,
'Meridional wind'
,
'm s-1'
,
tpstation
%
xmer
(:)
)
call
Add_point
(
'MER_WIND'
,
'Meridional wind'
,
'm s-1'
,
tpstation
%
xmer
(:)
)
end
if
end
if
...
...
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