[763] | 1 | ! |
---|
[1279] | 2 | ! $Id: writedynav_p.F 2622 2016-09-04 06:12:02Z fairhead $ |
---|
[763] | 3 | ! |
---|
[1146] | 4 | subroutine writedynav_p( histid, time, vcov, |
---|
[763] | 5 | , ucov,teta,ppk,phi,q,masse,ps,phis) |
---|
| 6 | |
---|
[1279] | 7 | #ifdef CPP_IOIPSL |
---|
| 8 | ! This routine needs IOIPSL |
---|
[763] | 9 | USE ioipsl |
---|
[1279] | 10 | #endif |
---|
[1823] | 11 | USE parallel_lmdz |
---|
[763] | 12 | USE misc_mod |
---|
[1146] | 13 | USE infotrac |
---|
[2597] | 14 | USE comconst_mod, ONLY: cpp |
---|
[2601] | 15 | USE temps_mod, ONLY: itau_dyn |
---|
| 16 | |
---|
[763] | 17 | implicit none |
---|
| 18 | |
---|
| 19 | C |
---|
| 20 | C Ecriture du fichier histoire au format IOIPSL |
---|
| 21 | C |
---|
| 22 | C Appels succesifs des routines: histwrite |
---|
| 23 | C |
---|
| 24 | C Entree: |
---|
| 25 | C histid: ID du fichier histoire |
---|
| 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" |
---|
[1279] | 49 | #include "iniprint.h" |
---|
[763] | 50 | |
---|
| 51 | C |
---|
| 52 | C Arguments |
---|
| 53 | C |
---|
| 54 | |
---|
[1146] | 55 | INTEGER histid |
---|
[763] | 56 | REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm) |
---|
| 57 | REAL teta(ip1jmp1,llm),phi(ip1jmp1,llm),ppk(ip1jmp1,llm) |
---|
| 58 | REAL ps(ip1jmp1),masse(ip1jmp1,llm) |
---|
| 59 | REAL phis(ip1jmp1) |
---|
[1146] | 60 | REAL q(ip1jmp1,llm,nqtot) |
---|
[763] | 61 | integer time |
---|
| 62 | |
---|
| 63 | |
---|
[1279] | 64 | #ifdef CPP_IOIPSL |
---|
| 65 | ! This routine needs IOIPSL |
---|
[763] | 66 | C Variables locales |
---|
| 67 | C |
---|
| 68 | integer ndex2d(iip1*jjp1),ndex3d(iip1*jjp1*llm),iq, ii, ll |
---|
| 69 | real us(ip1jmp1,llm), vs(ip1jmp1,llm) |
---|
| 70 | real tm(ip1jmp1,llm) |
---|
| 71 | REAL vnat(ip1jm,llm),unat(ip1jmp1,llm) |
---|
| 72 | logical ok_sync |
---|
| 73 | integer itau_w |
---|
| 74 | integer :: ijb,ije,jjn |
---|
| 75 | C |
---|
| 76 | C Initialisations |
---|
| 77 | C |
---|
| 78 | if (adjust) return |
---|
| 79 | |
---|
| 80 | ndex3d = 0 |
---|
| 81 | ndex2d = 0 |
---|
| 82 | ok_sync = .TRUE. |
---|
| 83 | us = 999.999 |
---|
| 84 | vs = 999.999 |
---|
| 85 | tm = 999.999 |
---|
| 86 | vnat = 999.999 |
---|
| 87 | unat = 999.999 |
---|
| 88 | itau_w = itau_dyn + time |
---|
| 89 | |
---|
| 90 | C Passage aux composantes naturelles du vent |
---|
| 91 | call covnat_p(llm, ucov, vcov, unat, vnat) |
---|
| 92 | |
---|
| 93 | C |
---|
| 94 | C Appels a histwrite pour l'ecriture des variables a sauvegarder |
---|
| 95 | C |
---|
| 96 | C Vents U scalaire |
---|
| 97 | C |
---|
| 98 | call gr_u_scal_p(llm, unat, us) |
---|
| 99 | |
---|
| 100 | ijb=ij_begin |
---|
| 101 | ije=ij_end |
---|
| 102 | jjn=jj_nb |
---|
| 103 | |
---|
| 104 | call histwrite(histid, 'u', itau_w, us(ijb:ije,:), |
---|
| 105 | . iip1*jjn*llm, ndex3d) |
---|
| 106 | C |
---|
| 107 | C Vents V scalaire |
---|
| 108 | C |
---|
| 109 | |
---|
| 110 | call gr_v_scal_p(llm, vnat, vs) |
---|
[1000] | 111 | call histwrite(histid, 'v', itau_w, vs(ijb:ije,:), |
---|
[763] | 112 | . iip1*jjn*llm, ndex3d) |
---|
| 113 | C |
---|
| 114 | C Temperature potentielle moyennee |
---|
| 115 | C |
---|
[1146] | 116 | |
---|
[1000] | 117 | call histwrite(histid, 'theta', itau_w, teta(ijb:ije,:), |
---|
[763] | 118 | . iip1*jjn*llm, ndex3d) |
---|
| 119 | C |
---|
| 120 | C Temperature moyennee |
---|
| 121 | C |
---|
| 122 | do ll=1,llm |
---|
| 123 | do ii = ijb, ije |
---|
| 124 | tm(ii,ll) = teta(ii,ll) * ppk(ii,ll)/cpp |
---|
| 125 | enddo |
---|
| 126 | enddo |
---|
| 127 | |
---|
| 128 | call histwrite(histid, 'temp', itau_w, tm(ijb:ije,:), |
---|
| 129 | . iip1*jjn*llm, ndex3d) |
---|
| 130 | C |
---|
| 131 | C Geopotentiel |
---|
| 132 | C |
---|
| 133 | call histwrite(histid, 'phi', itau_w, phi(ijb:ije,:), |
---|
| 134 | . iip1*jjn*llm, ndex3d) |
---|
| 135 | C |
---|
| 136 | C Traceurs |
---|
| 137 | C |
---|
[1146] | 138 | DO iq=1,nqtot |
---|
[763] | 139 | call histwrite(histid, ttext(iq), itau_w, q(ijb:ije,:,iq), |
---|
| 140 | . iip1*jjn*llm, ndex3d) |
---|
| 141 | enddo |
---|
| 142 | C |
---|
| 143 | C Masse |
---|
| 144 | C |
---|
| 145 | call histwrite(histid, 'masse', itau_w, masse(ijb:ije,1), |
---|
| 146 | . iip1*jjn, ndex2d) |
---|
| 147 | C |
---|
| 148 | C Pression au sol |
---|
| 149 | C |
---|
| 150 | call histwrite(histid, 'ps', itau_w, ps(ijb:ije), |
---|
| 151 | . iip1*jjn, ndex2d) |
---|
| 152 | C |
---|
| 153 | C Geopotentiel au sol |
---|
| 154 | C |
---|
| 155 | call histwrite(histid, 'phis', itau_w, phis(ijb:ije), |
---|
| 156 | . iip1*jjn, ndex2d) |
---|
| 157 | C |
---|
| 158 | C Fin |
---|
| 159 | C |
---|
| 160 | if (ok_sync) call histsync(histid) |
---|
[1279] | 161 | #else |
---|
| 162 | write(lunout,*)'writedynav_p: Needs IOIPSL to function' |
---|
| 163 | #endif |
---|
| 164 | ! #endif of #ifdef CPP_IOIPSL |
---|
[763] | 165 | return |
---|
| 166 | end |
---|