1 | ! |
---|
2 | ! $Id: writehist_p.F 2622 2016-09-04 06:12:02Z fairhead $ |
---|
3 | ! |
---|
4 | subroutine writehist_p( histid, histvid, time, vcov, |
---|
5 | , ucov,teta,phi,q,masse,ps,phis) |
---|
6 | |
---|
7 | #ifdef CPP_IOIPSL |
---|
8 | ! This routine needs IOIPSL |
---|
9 | USE ioipsl |
---|
10 | #endif |
---|
11 | USE parallel_lmdz |
---|
12 | USE misc_mod |
---|
13 | USE infotrac |
---|
14 | USE temps_mod, ONLY: itau_dyn |
---|
15 | |
---|
16 | implicit none |
---|
17 | |
---|
18 | C |
---|
19 | C Ecriture du fichier histoire au format IOIPSL |
---|
20 | C |
---|
21 | C Appels succesifs des routines: histwrite |
---|
22 | C |
---|
23 | C Entree: |
---|
24 | C histid: ID du fichier histoire |
---|
25 | C histvid:ID du fichier histoire pour les vents V (appele a disparaitre) |
---|
26 | C time: temps de l'ecriture |
---|
27 | C vcov: vents v covariants |
---|
28 | C ucov: vents u covariants |
---|
29 | C teta: temperature potentielle |
---|
30 | C phi : geopotentiel instantane |
---|
31 | C q : traceurs |
---|
32 | C masse: masse |
---|
33 | C ps :pression au sol |
---|
34 | C phis : geopotentiel au sol |
---|
35 | C |
---|
36 | C |
---|
37 | C Sortie: |
---|
38 | C fileid: ID du fichier netcdf cree |
---|
39 | C |
---|
40 | C L. Fairhead, LMD, 03/99 |
---|
41 | C |
---|
42 | C ===================================================================== |
---|
43 | C |
---|
44 | C Declarations |
---|
45 | #include "dimensions.h" |
---|
46 | #include "paramet.h" |
---|
47 | #include "comgeom.h" |
---|
48 | #include "description.h" |
---|
49 | #include "iniprint.h" |
---|
50 | |
---|
51 | C |
---|
52 | C Arguments |
---|
53 | C |
---|
54 | |
---|
55 | INTEGER histid, histvid |
---|
56 | REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm) |
---|
57 | REAL teta(ip1jmp1,llm),phi(ip1jmp1,llm) |
---|
58 | REAL ps(ip1jmp1),masse(ip1jmp1,llm) |
---|
59 | REAL phis(ip1jmp1) |
---|
60 | REAL q(ip1jmp1,llm,nqtot) |
---|
61 | integer time |
---|
62 | |
---|
63 | #ifdef CPP_IOIPSL |
---|
64 | ! This routine needs IOIPSL |
---|
65 | C Variables locales |
---|
66 | C |
---|
67 | integer iq, ii, ll |
---|
68 | integer ndexu(ip1jmp1*llm),ndexv(ip1jm*llm),ndex2d(ip1jmp1) |
---|
69 | logical ok_sync |
---|
70 | integer itau_w |
---|
71 | integer :: ijb,ije,jjn |
---|
72 | C |
---|
73 | C Initialisations |
---|
74 | C |
---|
75 | if (adjust) return |
---|
76 | |
---|
77 | |
---|
78 | ndexu = 0 |
---|
79 | ndexv = 0 |
---|
80 | ndex2d = 0 |
---|
81 | ok_sync =.TRUE. |
---|
82 | itau_w = itau_dyn + time |
---|
83 | C |
---|
84 | C Appels a histwrite pour l'ecriture des variables a sauvegarder |
---|
85 | C |
---|
86 | C Vents U |
---|
87 | C |
---|
88 | ijb=ij_begin |
---|
89 | ije=ij_end |
---|
90 | jjn=jj_nb |
---|
91 | |
---|
92 | call histwrite(histid, 'ucov', itau_w, ucov(ijb:ije,:), |
---|
93 | . iip1*jjn*llm, ndexu) |
---|
94 | |
---|
95 | C |
---|
96 | C Vents V |
---|
97 | C |
---|
98 | if (pole_sud) ije=ij_end-iip1 |
---|
99 | if (pole_sud) jjn=jj_nb-1 |
---|
100 | |
---|
101 | call histwrite(histvid, 'vcov', itau_w, vcov(ijb:ije,:), |
---|
102 | . iip1*jjn*llm, ndexv) |
---|
103 | |
---|
104 | C |
---|
105 | C Temperature potentielle |
---|
106 | C |
---|
107 | ijb=ij_begin |
---|
108 | ije=ij_end |
---|
109 | jjn=jj_nb |
---|
110 | |
---|
111 | call histwrite(histid, 'teta', itau_w, teta(ijb:ije,:), |
---|
112 | . iip1*jjn*llm, ndexu) |
---|
113 | C |
---|
114 | C Geopotentiel |
---|
115 | C |
---|
116 | call histwrite(histid, 'phi', itau_w, phi(ijb:ije,:), |
---|
117 | . iip1*jjn*llm, ndexu) |
---|
118 | C |
---|
119 | C Traceurs |
---|
120 | C |
---|
121 | DO iq=1,nqtot |
---|
122 | call histwrite(histid, ttext(iq), itau_w, q(ijb:ije,:,iq), |
---|
123 | . iip1*jjn*llm, ndexu) |
---|
124 | enddo |
---|
125 | C |
---|
126 | C Masse |
---|
127 | C |
---|
128 | call histwrite(histid, 'masse', itau_w, masse(ijb:ije,1), |
---|
129 | . iip1*jjn, ndex2d) |
---|
130 | C |
---|
131 | C Pression au sol |
---|
132 | C |
---|
133 | call histwrite(histid, 'ps', itau_w, ps(ijb:ije), |
---|
134 | . iip1*jjn, ndex2d) |
---|
135 | C |
---|
136 | C Geopotentiel au sol |
---|
137 | C |
---|
138 | call histwrite(histid, 'phis', itau_w, phis(ijb:ije), |
---|
139 | . iip1*jjn, ndex2d) |
---|
140 | C |
---|
141 | C Fin |
---|
142 | C |
---|
143 | if (ok_sync) then |
---|
144 | call histsync(histid) |
---|
145 | call histsync(histvid) |
---|
146 | endif |
---|
147 | #else |
---|
148 | write(lunout,*)'writehist_p: Needs IOIPSL to function' |
---|
149 | #endif |
---|
150 | ! #endif of #ifdef CPP_IOIPSL |
---|
151 | return |
---|
152 | end |
---|