/[lmdze]/trunk/dyn3d/writehist.f
ViewVC logotype

Contents of /trunk/dyn3d/writehist.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 178 - (show annotations)
Fri Mar 11 18:47:26 2016 UTC (8 years, 2 months ago) by guez
Original Path: trunk/Sources/dyn3d/writehist.f
File size: 2002 byte(s)
Moved variables date0, deltat, datasz_max, ncvar_ids, point, buff_pos,
buffer, regular from module histcom_var to modules where they are
defined.

Removed procedure ioipslmpp, useless for a sequential program.

Added argument datasz_max to histwrite_real (to avoid circular
dependency with histwrite).

Removed useless variables and computations everywhere.

Changed real litteral constants from default kind to double precision
in lwb, lwu, lwvn, sw1s, swtt, swtt1, swu.

Removed unused arguments: paer of sw, sw1s, sw2s, swclr; pcldsw of
sw1s, sw2s; pdsig, prayl of swr; co2_ppm of clmain, clqh; tsol of
transp_lay; nsrf of screenp; kcrit and kknu of gwstress; pstd of
orosetup.

Added output of relative humidity.

1 module writehist_m
2
3 implicit none
4
5 contains
6
7 subroutine writehist(time, vcov, ucov, teta, phi, masse, ps)
8
9 ! From writehist.F 1403 2010-07-01 09:02:53Z
10 ! Écriture du fichier histoire au format IOIPSL
11 ! Appels successifs des routines histwrite
12 ! L. Fairhead, LMD, 03/99
13
14 use dimens_m, only: llm
15 use com_io_dyn, only: histid, histvid, histuid
16 use paramet_m, only: ip1jm, ip1jmp1
17 use temps, only: itau_dyn
18 use histwrite_m, only: histwrite
19 use histsync_m, only: histsync
20 use covnat_m, only: covnat
21
22 ! Entree:
23 ! time: temps de l'ecriture
24 ! vcov: vents v covariants
25 ! ucov: vents u covariants
26 ! teta: temperature potentielle
27 ! phi : geopotentiel instantane
28 ! masse: masse
29 ! ps :pression au sol
30
31 ! Arguments
32
33 REAL vcov(ip1jm, llm), ucov(ip1jmp1, llm)
34 REAL teta(ip1jmp1, llm), phi(ip1jmp1, llm)
35 REAL, intent(in):: ps(ip1jmp1), masse(ip1jmp1, llm)
36 integer time
37
38 ! This routine needs IOIPSL to work
39 ! Variables locales
40
41 logical ok_sync
42 integer itau_w
43 REAL vnat(ip1jm, llm), unat(ip1jmp1, llm)
44
45 !---------------------------------------------------------------------
46
47 ! Initialisations
48
49 ok_sync =.TRUE.
50 itau_w = itau_dyn + time
51 ! Passage aux composantes naturelles du vent
52 call covnat(llm, ucov, vcov, unat, vnat)
53
54 ! Appels a histwrite pour l'ecriture des variables a sauvegarder
55
56 ! Vents U
57
58 call histwrite(histuid, 'u', itau_w, unat)
59
60 ! Vents V
61
62 call histwrite(histvid, 'v', itau_w, vnat)
63
64 ! Temperature potentielle
65
66 call histwrite(histid, 'teta', itau_w, teta)
67
68 ! Geopotentiel
69
70 call histwrite(histid, 'phi', itau_w, phi)
71
72 ! Masse
73
74 call histwrite(histid, 'masse', itau_w, masse)
75
76 ! Pression au sol
77 call histwrite(histid, 'ps', itau_w, ps)
78
79 if (ok_sync) then
80 call histsync(histid)
81 call histsync(histvid)
82 call histsync(histuid)
83 endif
84
85 end subroutine writehist
86
87 end module writehist_m

  ViewVC Help
Powered by ViewVC 1.1.21