source: LMDZ6/branches/Amaury_dev/libf/dyn3d_common/writedynav.F90 @ 5157

Last change on this file since 5157 was 5136, checked in by abarral, 3 months ago

Put comgeom.h, comgeom2.h into modules

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1! $Id: writedynav.F90 5136 2024-07-28 14:17:54Z abarral $
2
3SUBROUTINE writedynav(time, vcov, ucov, teta, ppk, phi, q, masse, ps, phis)
4
5  USE ioipsl
6  USE infotrac, ONLY: nqtot
7  USE com_io_dyn_mod, ONLY: histaveid, histvaveid, histuaveid
8  USE comconst_mod, ONLY: cpp
9  USE temps_mod, ONLY: itau_dyn
10  USE lmdz_description, ONLY: descript
11  USE lmdz_iniprint, ONLY: lunout, prt_level
12  USE lmdz_comgeom
13
14  IMPLICIT NONE
15
16  !   Ecriture du fichier histoire au format IOIPSL
17
18  !   Appels succesifs des routines: histwrite
19
20  !   Entree:
21  !      time: temps de l'ecriture
22  !      vcov: vents v covariants
23  !      ucov: vents u covariants
24  !      teta: temperature potentielle
25  !      phi : geopotentiel instantane
26  !      q   : traceurs
27  !      masse: masse
28  !      ps   :pression au sol
29  !      phis : geopotentiel au sol
30
31  !   L. Fairhead, LMD, 03/99
32
33  !   Declarations
34  INCLUDE "dimensions.h"
35  INCLUDE "paramet.h"
36  !   Arguments
37
38  REAL vcov(ip1jm, llm), ucov(ip1jmp1, llm)
39  REAL teta(ip1jmp1 * llm), phi(ip1jmp1, llm), ppk(ip1jmp1 * llm)
40  REAL ps(ip1jmp1), masse(ip1jmp1, llm)
41  REAL phis(ip1jmp1)
42  REAL q(ip1jmp1, llm, nqtot)
43  INTEGER time
44
45  ! This routine needs IOIPSL to work
46  !   Variables locales
47
48  INTEGER ndex2d(ip1jmp1), ndexu(ip1jmp1 * llm), ndexv(ip1jm * llm)
49  INTEGER iq, ii, ll
50  REAL tm(ip1jmp1 * llm)
51  REAL vnat(ip1jm, llm), unat(ip1jmp1, llm)
52  LOGICAL ok_sync
53  INTEGER itau_w
54
55  !-----------------------------------------------------------------
56
57  !  Initialisations
58
59  ndexu = 0
60  ndexv = 0
61  ndex2d = 0
62  ok_sync = .TRUE.
63  tm = 999.999
64  vnat = 999.999
65  unat = 999.999
66  itau_w = itau_dyn + time
67
68  ! Passage aux composantes naturelles du vent
69  CALL covnat(llm, ucov, vcov, unat, vnat)
70
71  !  Appels a histwrite pour l'ecriture des variables a sauvegarder
72
73  !  Vents U
74
75  CALL histwrite(histuaveid, 'u', itau_w, unat, &
76          iip1 * jjp1 * llm, ndexu)
77
78  !  Vents V
79
80  CALL histwrite(histvaveid, 'v', itau_w, vnat, &
81          iip1 * jjm * llm, ndexv)
82
83  !  Temperature potentielle moyennee
84
85  CALL histwrite(histaveid, 'theta', itau_w, teta, &
86          iip1 * jjp1 * llm, ndexu)
87
88  !  Temperature moyennee
89
90  do ii = 1, ijp1llm
91    tm(ii) = teta(ii) * ppk(ii) / cpp
92  enddo
93  CALL histwrite(histaveid, 'temp', itau_w, tm, &
94          iip1 * jjp1 * llm, ndexu)
95
96  !  Geopotentiel
97
98  CALL histwrite(histaveid, 'phi', itau_w, phi, &
99          iip1 * jjp1 * llm, ndexu)
100
101  !  Traceurs
102
103  !  DO iq=1, nqtot
104  !       CALL histwrite(histaveid, tracers(iq)%longName, itau_w, &
105  !                   q(:, :, iq), iip1*jjp1*llm, ndexu)
106  ! enddo
107
108  !  Masse
109
110  CALL histwrite(histaveid, 'masse', itau_w, masse, &
111          iip1 * jjp1 * llm, ndexu)
112
113  !  Pression au sol
114
115  CALL histwrite(histaveid, 'ps', itau_w, ps, iip1 * jjp1, ndex2d)
116
117  ! Geopotentiel au sol
118
119  ! CALL histwrite(histaveid, 'phis', itau_w, phis, iip1*jjp1, ndex2d)
120
121  IF (ok_sync) THEN
122    CALL histsync(histaveid)
123    CALL histsync(histvaveid)
124    CALL histsync(histuaveid)
125  ENDIF
126
127END SUBROUTINE  writedynav
Note: See TracBrowser for help on using the repository browser.