1 | subroutine writehist( histid, histvid, nq, time, vcov, |
---|
2 | , ucov,teta,phi,q,masse,ps,phis) |
---|
3 | |
---|
4 | USE ioipsl |
---|
5 | implicit none |
---|
6 | |
---|
7 | C |
---|
8 | C Ecriture du fichier histoire au format IOIPSL |
---|
9 | C |
---|
10 | C Appels succesifs des routines: histwrite |
---|
11 | C |
---|
12 | C Entree: |
---|
13 | C histid: ID du fichier histoire |
---|
14 | C histvid:ID du fichier histoire pour les vents V (appele a disparaitre) |
---|
15 | C nqmx: nombre maxi de traceurs |
---|
16 | C time: temps de l'ecriture |
---|
17 | C vcov: vents v covariants |
---|
18 | C ucov: vents u covariants |
---|
19 | C teta: temperature potentielle |
---|
20 | C phi : geopotentiel instantane |
---|
21 | C q : traceurs |
---|
22 | C masse: masse |
---|
23 | C ps :pression au sol |
---|
24 | C phis : geopotentiel au sol |
---|
25 | C |
---|
26 | C |
---|
27 | C Sortie: |
---|
28 | C fileid: ID du fichier netcdf cree |
---|
29 | C |
---|
30 | C L. Fairhead, LMD, 03/99 |
---|
31 | C |
---|
32 | C ===================================================================== |
---|
33 | C |
---|
34 | C Declarations |
---|
35 | #include "dimensions.h" |
---|
36 | #include "paramet.h" |
---|
37 | #include "comconst.h" |
---|
38 | #include "comvert.h" |
---|
39 | #include "comgeom.h" |
---|
40 | #include "temps.h" |
---|
41 | #include "ener.h" |
---|
42 | #include "logic.h" |
---|
43 | #include "description.h" |
---|
44 | #include "serre.h" |
---|
45 | |
---|
46 | C |
---|
47 | C Arguments |
---|
48 | C |
---|
49 | |
---|
50 | INTEGER histid, nq, histvid |
---|
51 | REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm) |
---|
52 | REAL teta(ip1jmp1,llm),phi(ip1jmp1,llm) |
---|
53 | REAL ps(ip1jmp1),masse(ip1jmp1,llm) |
---|
54 | REAL phis(ip1jmp1) |
---|
55 | REAL q(ip1jmp1,llm,nq) |
---|
56 | integer time |
---|
57 | |
---|
58 | |
---|
59 | C Variables locales |
---|
60 | C |
---|
61 | integer iq, ii, ll |
---|
62 | integer ndexu(ip1jmp1*llm),ndexv(ip1jm*llm),ndex2d(ip1jmp1) |
---|
63 | character*3 str |
---|
64 | logical ok_sync |
---|
65 | C |
---|
66 | C Initialisations |
---|
67 | C |
---|
68 | str='q ' |
---|
69 | ndexu = 0 |
---|
70 | ndexv = 0 |
---|
71 | ndex2d = 0 |
---|
72 | ok_sync =.TRUE. |
---|
73 | C |
---|
74 | C Appels a histwrite pour l'ecriture des variables a sauvegarder |
---|
75 | C |
---|
76 | C Vents U |
---|
77 | C |
---|
78 | call histwrite(histid, 'ucov', time, ucov, |
---|
79 | . iip1*jjp1*llm, ndexu) |
---|
80 | |
---|
81 | C |
---|
82 | C Vents V |
---|
83 | C |
---|
84 | call histwrite(histvid, 'vcov', time, vcov, |
---|
85 | . iip1*jjm*llm, ndexv) |
---|
86 | |
---|
87 | C |
---|
88 | C Temperature potentielle |
---|
89 | C |
---|
90 | call histwrite(histid, 'teta', time, teta, |
---|
91 | . iip1*jjp1*llm, ndexu) |
---|
92 | C |
---|
93 | C Geopotentiel |
---|
94 | C |
---|
95 | call histwrite(histid, 'phi', time, phi, |
---|
96 | . iip1*jjp1*llm, ndexu) |
---|
97 | C |
---|
98 | C Traceurs |
---|
99 | C |
---|
100 | IF(nq.GE.1) THEN |
---|
101 | DO iq=1,nq |
---|
102 | IF ( iq.LE.9 ) THEN |
---|
103 | WRITE(str(2:2),'(i1.1)') iq |
---|
104 | ELSE |
---|
105 | WRITE(str(2:3),'(i2.2)') iq |
---|
106 | ENDIF |
---|
107 | call histwrite(histid, str, time, q(:,:,iq), |
---|
108 | . iip1*jjp1*llm, ndexu) |
---|
109 | enddo |
---|
110 | endif |
---|
111 | C |
---|
112 | C Masse |
---|
113 | C |
---|
114 | call histwrite(histid, 'masse', time, masse, iip1*jjp1, ndex2d) |
---|
115 | C |
---|
116 | C Pression au sol |
---|
117 | C |
---|
118 | call histwrite(histid, 'ps', time, ps, iip1*jjp1, ndex2d) |
---|
119 | C |
---|
120 | C Geopotentiel au sol |
---|
121 | C |
---|
122 | call histwrite(histid, 'phis', time, phis, iip1*jjp1, ndex2d) |
---|
123 | C |
---|
124 | C Fin |
---|
125 | C |
---|
126 | if (ok_sync) then |
---|
127 | call histsync(histid) |
---|
128 | call histsync(histvid) |
---|
129 | endif |
---|
130 | return |
---|
131 | end |
---|