[711] | 1 | c======================================================================= |
---|
| 2 | PROGRAM start2archive |
---|
| 3 | c======================================================================= |
---|
| 4 | c |
---|
| 5 | c |
---|
| 6 | c Date: 01/1997 |
---|
| 7 | c ---- |
---|
| 8 | c |
---|
| 9 | c |
---|
| 10 | c Objet: Passage des fichiers netcdf d'etat initial "start" et |
---|
| 11 | c ----- "startfi" a un fichier netcdf unique "start_archive" |
---|
| 12 | c |
---|
| 13 | c "start_archive" est une banque d'etats initiaux: |
---|
| 14 | c On peut stocker plusieurs etats initiaux dans un meme fichier "start_archive" |
---|
| 15 | c (Veiller dans ce cas avoir un day_ini different pour chacun des start) |
---|
| 16 | c |
---|
| 17 | c |
---|
| 18 | c |
---|
| 19 | c======================================================================= |
---|
| 20 | |
---|
[787] | 21 | USE comsoil_h |
---|
| 22 | |
---|
[711] | 23 | implicit none |
---|
| 24 | |
---|
| 25 | #include "dimensions.h" |
---|
| 26 | #include "paramet.h" |
---|
| 27 | #include "comconst.h" |
---|
| 28 | #include "comdissip.h" |
---|
| 29 | #include "comvert.h" |
---|
| 30 | #include "comgeom.h" |
---|
| 31 | #include "logic.h" |
---|
| 32 | #include "temps.h" |
---|
| 33 | #include "control.h" |
---|
| 34 | #include "ener.h" |
---|
| 35 | #include "description.h" |
---|
| 36 | |
---|
| 37 | #include "dimphys.h" |
---|
| 38 | #include "planete.h" |
---|
| 39 | #include"advtrac.h" |
---|
| 40 | #include "netcdf.inc" |
---|
| 41 | |
---|
| 42 | c----------------------------------------------------------------------- |
---|
| 43 | c Declarations |
---|
| 44 | c----------------------------------------------------------------------- |
---|
| 45 | |
---|
| 46 | c variables dynamiques du GCM |
---|
| 47 | c ----------------------------- |
---|
| 48 | REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm) ! vents covariants |
---|
| 49 | REAL teta(ip1jmp1,llm) ! temperature potentielle |
---|
| 50 | REAL q(ip1jmp1,llm,nqmx) ! champs advectes |
---|
| 51 | REAL pks(ip1jmp1) ! exner (f pour filtre) |
---|
| 52 | REAL pk(ip1jmp1,llm) |
---|
| 53 | REAL pkf(ip1jmp1,llm) |
---|
| 54 | REAL beta(iip1,jjp1,llm) |
---|
| 55 | REAL phis(ip1jmp1) ! geopotentiel au sol |
---|
| 56 | REAL masse(ip1jmp1,llm) ! masse de l'atmosphere |
---|
| 57 | REAL ps(ip1jmp1) ! pression au sol |
---|
| 58 | REAL p3d(iip1, jjp1, llm+1) ! pression aux interfaces |
---|
| 59 | |
---|
| 60 | c Variable Physiques (grille physique) |
---|
| 61 | c ------------------------------------ |
---|
| 62 | REAL tsurf(ngridmx) ! Surface temperature |
---|
| 63 | REAL tsoil(ngridmx,nsoilmx) ! Soil temperature |
---|
| 64 | REAL co2ice(ngridmx) ! CO2 ice layer |
---|
| 65 | REAL q2(ngridmx,nlayermx+1),qsurf(ngridmx,nqmx) |
---|
| 66 | REAL emis(ngridmx) |
---|
| 67 | INTEGER start,length |
---|
| 68 | PARAMETER (length = 100) |
---|
| 69 | REAL tab_cntrl_fi(length) ! tableau des parametres de startfi |
---|
| 70 | REAL tab_cntrl_dyn(length) ! tableau des parametres de start |
---|
| 71 | INTEGER*4 day_ini_fi |
---|
| 72 | |
---|
| 73 | ! added by FF for cloud fraction setup |
---|
| 74 | REAL hice(ngridmx) |
---|
| 75 | REAL cloudfrac(ngridmx,nlayermx),totalcloudfrac(ngridmx) |
---|
| 76 | |
---|
| 77 | |
---|
| 78 | c Variable naturelle / grille scalaire |
---|
| 79 | c ------------------------------------ |
---|
| 80 | REAL T(ip1jmp1,llm),us(ip1jmp1,llm),vs(ip1jmp1,llm) |
---|
| 81 | REAL tsurfS(ip1jmp1) |
---|
| 82 | REAL tsoilS(ip1jmp1,nsoilmx) |
---|
| 83 | REAL ithS(ip1jmp1,nsoilmx) ! Soil Thermal Inertia |
---|
| 84 | REAL co2iceS(ip1jmp1) |
---|
| 85 | REAL q2S(ip1jmp1,llm+1),qsurfS(ip1jmp1,nqmx) |
---|
| 86 | REAL emisS(ip1jmp1) |
---|
| 87 | |
---|
| 88 | ! added by FF for cloud fraction setup |
---|
| 89 | REAL hiceS(ip1jmp1) |
---|
| 90 | REAL cloudfracS(ip1jmp1,llm),totalcloudfracS(ip1jmp1) |
---|
| 91 | |
---|
| 92 | c Variables intermediaires : vent naturel, mais pas coord scalaire |
---|
| 93 | c---------------------------------------------------------------- |
---|
| 94 | REAL vn(ip1jm,llm),un(ip1jmp1,llm) |
---|
| 95 | |
---|
| 96 | c Autres variables |
---|
| 97 | c ----------------- |
---|
| 98 | LOGICAL startdrs |
---|
| 99 | INTEGER Lmodif |
---|
| 100 | |
---|
| 101 | REAL ptotal, co2icetotal |
---|
| 102 | REAL timedyn,timefi !fraction du jour dans start, startfi |
---|
| 103 | REAL date |
---|
| 104 | |
---|
| 105 | CHARACTER*2 str2 |
---|
| 106 | CHARACTER*80 fichier |
---|
| 107 | data fichier /'startfi'/ |
---|
| 108 | |
---|
| 109 | INTEGER ij, l,i,j,isoil,iq |
---|
| 110 | character*80 fichnom |
---|
| 111 | integer :: ierr,ntime |
---|
| 112 | integer :: nq,numvanle |
---|
| 113 | character(len=30) :: txt ! to store some text |
---|
| 114 | |
---|
| 115 | c Netcdf |
---|
| 116 | c------- |
---|
| 117 | integer varid,dimid,timelen |
---|
| 118 | INTEGER nid,nid1 |
---|
| 119 | |
---|
| 120 | c----------------------------------------------------------------------- |
---|
| 121 | c Initialisations |
---|
| 122 | c----------------------------------------------------------------------- |
---|
| 123 | |
---|
| 124 | grireg = .TRUE. |
---|
| 125 | |
---|
| 126 | c======================================================================= |
---|
| 127 | c Lecture des donnees |
---|
| 128 | c======================================================================= |
---|
| 129 | ! Load tracer names: |
---|
| 130 | call iniadvtrac(nq,numvanle) |
---|
| 131 | |
---|
| 132 | fichnom = 'start.nc' |
---|
| 133 | CALL dynetat0(fichnom,nqmx,vcov,ucov,teta,q,masse, |
---|
| 134 | . ps,phis,timedyn) |
---|
| 135 | |
---|
| 136 | ! load 'controle' array from dynamics start file |
---|
| 137 | |
---|
| 138 | ierr = NF_OPEN (fichnom, NF_NOWRITE,nid1) |
---|
| 139 | IF (ierr.NE.NF_NOERR) THEN |
---|
| 140 | write(6,*)' Pb d''ouverture du fichier'//trim(fichnom) |
---|
| 141 | CALL ABORT |
---|
| 142 | ENDIF |
---|
| 143 | |
---|
| 144 | ierr = NF_INQ_VARID (nid1, "controle", varid) |
---|
| 145 | IF (ierr .NE. NF_NOERR) THEN |
---|
| 146 | PRINT*, "start2archive: Le champ <controle> est absent" |
---|
| 147 | CALL abort |
---|
| 148 | ENDIF |
---|
| 149 | #ifdef NC_DOUBLE |
---|
| 150 | ierr = NF_GET_VAR_DOUBLE(nid1, varid, tab_cntrl_dyn) |
---|
| 151 | #else |
---|
| 152 | ierr = NF_GET_VAR_REAL(nid1, varid, tab_cntrl_dyn) |
---|
| 153 | #endif |
---|
| 154 | IF (ierr .NE. NF_NOERR) THEN |
---|
| 155 | PRINT*, "start2archive: Lecture echoue pour <controle>" |
---|
| 156 | CALL abort |
---|
| 157 | ENDIF |
---|
| 158 | |
---|
| 159 | ierr = NF_CLOSE(nid1) |
---|
| 160 | |
---|
| 161 | |
---|
| 162 | fichnom = 'startfi.nc' |
---|
| 163 | Lmodif=0 |
---|
| 164 | |
---|
[787] | 165 | CALL phyetat0 (ngridmx,fichnom,0,Lmodif,nsoilmx,nqmx,day_ini_fi, |
---|
| 166 | . timefi, |
---|
[711] | 167 | . tsurf,tsoil,emis,q2,qsurf, |
---|
| 168 | ! change FF 05/2011 |
---|
| 169 | . cloudfrac,totalcloudfrac,hice) |
---|
| 170 | |
---|
| 171 | |
---|
| 172 | ! load 'controle' array from physics start file |
---|
| 173 | |
---|
| 174 | ierr = NF_OPEN (fichnom, NF_NOWRITE,nid1) |
---|
| 175 | IF (ierr.NE.NF_NOERR) THEN |
---|
| 176 | write(6,*)' Pb d''ouverture du fichier'//trim(fichnom) |
---|
| 177 | CALL ABORT |
---|
| 178 | ENDIF |
---|
| 179 | |
---|
| 180 | ierr = NF_INQ_VARID (nid1, "controle", varid) |
---|
| 181 | IF (ierr .NE. NF_NOERR) THEN |
---|
| 182 | PRINT*, "start2archive: Le champ <controle> est absent" |
---|
| 183 | CALL abort |
---|
| 184 | ENDIF |
---|
| 185 | #ifdef NC_DOUBLE |
---|
| 186 | ierr = NF_GET_VAR_DOUBLE(nid1, varid, tab_cntrl_fi) |
---|
| 187 | #else |
---|
| 188 | ierr = NF_GET_VAR_REAL(nid1, varid, tab_cntrl_fi) |
---|
| 189 | #endif |
---|
| 190 | IF (ierr .NE. NF_NOERR) THEN |
---|
| 191 | PRINT*, "start2archive: Lecture echoue pour <controle>" |
---|
| 192 | CALL abort |
---|
| 193 | ENDIF |
---|
| 194 | |
---|
| 195 | ierr = NF_CLOSE(nid1) |
---|
| 196 | |
---|
| 197 | |
---|
| 198 | c----------------------------------------------------------------------- |
---|
| 199 | c Controle de la synchro |
---|
| 200 | c----------------------------------------------------------------------- |
---|
| 201 | !mars a voir if ((day_ini_fi.ne.day_ini).or.(abs(timefi-timedyn).gt.1.e-10)) |
---|
| 202 | if ((day_ini_fi.ne.day_ini)) |
---|
| 203 | & stop ' Probleme de Synchro entre start et startfi !!!' |
---|
| 204 | |
---|
| 205 | |
---|
| 206 | c ***************************************************************** |
---|
| 207 | c Option : Reinitialisation des dates dans la premieres annees : |
---|
| 208 | do while (day_ini.ge.year_day) |
---|
| 209 | day_ini=day_ini-year_day |
---|
| 210 | enddo |
---|
| 211 | c ***************************************************************** |
---|
| 212 | |
---|
| 213 | c----------------------------------------------------------------------- |
---|
| 214 | c Initialisations |
---|
| 215 | c----------------------------------------------------------------------- |
---|
| 216 | |
---|
| 217 | CALL defrun_new(99, .FALSE. ) |
---|
| 218 | call iniconst |
---|
| 219 | call inigeom |
---|
| 220 | call inifilr |
---|
| 221 | CALL pression(ip1jmp1, ap, bp, ps, p3d) |
---|
| 222 | call exner_hyb(ip1jmp1, ps, p3d, beta, pks, pk, pkf) |
---|
| 223 | |
---|
| 224 | c======================================================================= |
---|
| 225 | c Transformation EN VARIABLE NATURELLE / GRILLE SCALAIRE si necessaire |
---|
| 226 | c======================================================================= |
---|
| 227 | c Les variables modeles dependent de la resolution. Il faut donc |
---|
| 228 | c eliminer les facteurs responsables de cette dependance |
---|
| 229 | c (pour utiliser newstart) |
---|
| 230 | c======================================================================= |
---|
| 231 | |
---|
| 232 | c----------------------------------------------------------------------- |
---|
| 233 | c Vent (depend de la resolution horizontale) |
---|
| 234 | c----------------------------------------------------------------------- |
---|
| 235 | c |
---|
| 236 | c ucov --> un et vcov --> vn |
---|
| 237 | c un --> us et vn --> vs |
---|
| 238 | c |
---|
| 239 | c----------------------------------------------------------------------- |
---|
| 240 | |
---|
| 241 | call covnat(llm,ucov, vcov, un, vn) |
---|
| 242 | call wind_scal(un,vn,us,vs) |
---|
| 243 | |
---|
| 244 | c----------------------------------------------------------------------- |
---|
| 245 | c Temperature (depend de la resolution verticale => de "sigma.def") |
---|
| 246 | c----------------------------------------------------------------------- |
---|
| 247 | c |
---|
| 248 | c h --> T |
---|
| 249 | c |
---|
| 250 | c----------------------------------------------------------------------- |
---|
| 251 | |
---|
| 252 | DO l=1,llm |
---|
| 253 | DO ij=1,ip1jmp1 |
---|
| 254 | T(ij,l)=teta(ij,l)*pk(ij,l)/cpp !mars deduit de l'equation dans newstart |
---|
| 255 | ENDDO |
---|
| 256 | ENDDO |
---|
| 257 | |
---|
| 258 | c----------------------------------------------------------------------- |
---|
| 259 | c Variable physique |
---|
| 260 | c----------------------------------------------------------------------- |
---|
| 261 | c |
---|
| 262 | c tsurf --> tsurfS |
---|
| 263 | c co2ice --> co2iceS |
---|
| 264 | c tsoil --> tsoilS |
---|
| 265 | c emis --> emisS |
---|
| 266 | c q2 --> q2S |
---|
| 267 | c qsurf --> qsurfS |
---|
| 268 | c |
---|
| 269 | c----------------------------------------------------------------------- |
---|
| 270 | |
---|
| 271 | call gr_fi_dyn(1,ngridmx,iip1,jjp1,tsurf,tsurfS) |
---|
| 272 | ! call gr_fi_dyn(1,ngridmx,iip1,jjp1,co2ice,co2iceS) |
---|
| 273 | call gr_fi_dyn(nsoilmx,ngridmx,iip1,jjp1,tsoil,tsoilS) |
---|
| 274 | ! Note: thermal inertia "inertiedat" is in comsoil.h |
---|
| 275 | call gr_fi_dyn(nsoilmx,ngridmx,iip1,jjp1,inertiedat,ithS) |
---|
| 276 | call gr_fi_dyn(1,ngridmx,iip1,jjp1,emis,emisS) |
---|
| 277 | call gr_fi_dyn(llm+1,ngridmx,iip1,jjp1,q2,q2S) |
---|
| 278 | call gr_fi_dyn(nqmx,ngridmx,iip1,jjp1,qsurf,qsurfS) |
---|
| 279 | call gr_fi_dyn(llm,ngridmx,iip1,jjp1,cloudfrac,cloudfracS) |
---|
| 280 | call gr_fi_dyn(1,ngridmx,iip1,jjp1,hice,hiceS) |
---|
| 281 | call gr_fi_dyn(1,ngridmx,iip1,jjp1,totalcloudfrac,totalcloudfracS) |
---|
| 282 | |
---|
| 283 | c======================================================================= |
---|
| 284 | c Info pour controler |
---|
| 285 | c======================================================================= |
---|
| 286 | |
---|
| 287 | ptotal = 0. |
---|
| 288 | co2icetotal = 0. |
---|
| 289 | DO j=1,jjp1 |
---|
| 290 | DO i=1,iim |
---|
| 291 | ptotal=ptotal+aire(i+(iim+1)*(j-1))*ps(i+(iim+1)*(j-1))/g |
---|
| 292 | ! co2icetotal = co2icetotal + |
---|
| 293 | ! & co2iceS(i+(iim+1)*(j-1))*aire(i+(iim+1)*(j-1)) |
---|
| 294 | ENDDO |
---|
| 295 | ENDDO |
---|
| 296 | write(*,*)'Ancienne grille : masse de l''atm :',ptotal |
---|
| 297 | ! write(*,*)'Ancienne grille : masse de la glace CO2 :',co2icetotal |
---|
| 298 | |
---|
| 299 | c----------------------------------------------------------------------- |
---|
| 300 | c Passage de "ptotal" et "co2icetotal" par tab_cntrl_fi |
---|
| 301 | c----------------------------------------------------------------------- |
---|
| 302 | |
---|
| 303 | tab_cntrl_fi(49) = ptotal |
---|
| 304 | tab_cntrl_fi(50) = co2icetotal |
---|
| 305 | |
---|
| 306 | c======================================================================= |
---|
| 307 | c Ecriture dans le fichier "start_archive" |
---|
| 308 | c======================================================================= |
---|
| 309 | |
---|
| 310 | c----------------------------------------------------------------------- |
---|
| 311 | c Ouverture de "start_archive" |
---|
| 312 | c----------------------------------------------------------------------- |
---|
| 313 | |
---|
| 314 | ierr = NF_OPEN ('start_archive.nc', NF_WRITE,nid) |
---|
| 315 | |
---|
| 316 | c----------------------------------------------------------------------- |
---|
| 317 | c si "start_archive" n'existe pas: |
---|
| 318 | c 1_ ouverture |
---|
| 319 | c 2_ creation de l'entete dynamique ("ini_archive") |
---|
| 320 | c----------------------------------------------------------------------- |
---|
| 321 | c ini_archive: |
---|
| 322 | c On met dans l'entete le tab_cntrl dynamique (1 a 16) |
---|
| 323 | c On y ajoute les valeurs du tab_cntrl_fi (a partir de 51) |
---|
| 324 | c En plus les deux valeurs ptotal et co2icetotal (99 et 100) |
---|
| 325 | c----------------------------------------------------------------------- |
---|
| 326 | |
---|
| 327 | if (ierr.ne.NF_NOERR) then |
---|
| 328 | write(*,*)'OK, Could not open file "start_archive.nc"' |
---|
| 329 | write(*,*)'So let s create a new "start_archive"' |
---|
| 330 | ierr = NF_CREATE('start_archive.nc', NF_CLOBBER, nid) |
---|
| 331 | call ini_archive(nid,day_ini,phis,ithS,tab_cntrl_fi, |
---|
| 332 | & tab_cntrl_dyn) |
---|
| 333 | endif |
---|
| 334 | |
---|
| 335 | c----------------------------------------------------------------------- |
---|
| 336 | c Ecriture de la coordonnee temps (date en jours) |
---|
| 337 | c----------------------------------------------------------------------- |
---|
| 338 | |
---|
| 339 | date = day_ini |
---|
| 340 | ierr= NF_INQ_VARID(nid,"Time",varid) |
---|
| 341 | ierr= NF_INQ_DIMID(nid,"Time",dimid) |
---|
| 342 | ierr= NF_INQ_DIMLEN(nid,dimid,timelen) |
---|
| 343 | ntime=timelen+1 |
---|
| 344 | |
---|
| 345 | write(*,*) "******************" |
---|
| 346 | write(*,*) "ntime",ntime |
---|
| 347 | write(*,*) "******************" |
---|
| 348 | #ifdef NC_DOUBLE |
---|
| 349 | ierr= NF_PUT_VARA_DOUBLE(nid,varid,ntime,1,date) |
---|
| 350 | #else |
---|
| 351 | ierr= NF_PUT_VARA_REAL(nid,varid,ntime,1,date) |
---|
| 352 | #endif |
---|
| 353 | if (ierr.ne.NF_NOERR) then |
---|
| 354 | write(*,*) "time matter ",NF_STRERROR(ierr) |
---|
| 355 | stop |
---|
| 356 | endif |
---|
| 357 | |
---|
| 358 | c----------------------------------------------------------------------- |
---|
| 359 | c Ecriture des champs (co2ice,emis,ps,Tsurf,T,u,v,q2,q,qsurf) |
---|
| 360 | c----------------------------------------------------------------------- |
---|
| 361 | c ATTENTION: q2 a une couche de plus!!!! |
---|
| 362 | c Pour creer un fichier netcdf lisible par grads, |
---|
| 363 | c On passe donc une des couches de q2 a part |
---|
| 364 | c comme une variable 2D (la couche au sol: "q2surf") |
---|
| 365 | c Les lmm autres couches sont nommees "q2atm" (3D) |
---|
| 366 | c----------------------------------------------------------------------- |
---|
| 367 | |
---|
| 368 | ! call write_archive(nid,ntime,'co2ice','couche de glace co2', |
---|
| 369 | ! & 'kg/m2',2,co2iceS) |
---|
| 370 | call write_archive(nid,ntime,'emis','grd emis',' ',2,emisS) |
---|
| 371 | call write_archive(nid,ntime,'ps','Psurf','Pa',2,ps) |
---|
| 372 | call write_archive(nid,ntime,'tsurf','surf T','K',2,tsurfS) |
---|
| 373 | call write_archive(nid,ntime,'temp','temperature','K',3,t) |
---|
| 374 | call write_archive(nid,ntime,'u','Vent zonal','m.s-1',3,us) |
---|
| 375 | call write_archive(nid,ntime,'v','Vent merid','m.s-1',3,vs) |
---|
| 376 | call write_archive(nid,ntime,'q2surf','wind variance','m2.s-2',2, |
---|
| 377 | . q2S) |
---|
| 378 | call write_archive(nid,ntime,'q2atm','wind variance','m2.s-2',3, |
---|
| 379 | . q2S(1,2)) |
---|
| 380 | |
---|
| 381 | c----------------------------------------------------------------------- |
---|
| 382 | c Ecriture du champs q ( q[1,nqmx] ) |
---|
| 383 | c----------------------------------------------------------------------- |
---|
| 384 | do iq=1,nqmx |
---|
| 385 | call write_archive(nid,ntime,tnom(iq),'tracer','kg/kg', |
---|
| 386 | & 3,q(1,1,iq)) |
---|
| 387 | end do |
---|
| 388 | c----------------------------------------------------------------------- |
---|
| 389 | c Ecriture du champs qsurf ( qsurf[1,nqmx] ) |
---|
| 390 | c----------------------------------------------------------------------- |
---|
| 391 | do iq=1,nqmx |
---|
| 392 | txt=trim(tnom(iq))//"_surf" |
---|
| 393 | call write_archive(nid,ntime,txt,'Tracer on surface', |
---|
| 394 | & 'kg.m-2',2,qsurfS(1,iq)) |
---|
| 395 | enddo |
---|
| 396 | |
---|
| 397 | |
---|
| 398 | c----------------------------------------------------------------------- |
---|
| 399 | c Ecriture du champs tsoil ( Tg[1,10] ) |
---|
| 400 | c----------------------------------------------------------------------- |
---|
| 401 | c "tsoil" Temperature au sol definie dans 10 couches dans le sol |
---|
| 402 | c Les 10 couches sont lues comme 10 champs |
---|
| 403 | c nommees Tg[1,10] |
---|
| 404 | |
---|
| 405 | c do isoil=1,nsoilmx |
---|
| 406 | c write(str2,'(i2.2)') isoil |
---|
| 407 | c call write_archive(nid,ntime,'Tg'//str2,'Ground Temperature ', |
---|
| 408 | c . 'K',2,tsoilS(1,isoil)) |
---|
| 409 | c enddo |
---|
| 410 | |
---|
| 411 | ! Write soil temperatures tsoil |
---|
| 412 | call write_archive(nid,ntime,'tsoil','Soil temperature', |
---|
| 413 | & 'K',-3,tsoilS) |
---|
| 414 | |
---|
| 415 | ! Write soil thermal inertia |
---|
| 416 | call write_archive(nid,ntime,'inertiedat', |
---|
| 417 | & 'Soil thermal inertia', |
---|
| 418 | & 'J.s-1/2.m-2.K-1',-3,ithS) |
---|
| 419 | |
---|
| 420 | ! Write (0D) volumetric heat capacity (stored in comsoil.h) |
---|
| 421 | ! call write_archive(nid,ntime,'volcapa', |
---|
| 422 | ! & 'Soil volumetric heat capacity', |
---|
| 423 | ! & 'J.m-3.K-1',0,volcapa) |
---|
| 424 | ! Note: no need to write volcapa, it is stored in "controle" table |
---|
| 425 | |
---|
| 426 | c----------------------------------------------------------------------- |
---|
| 427 | c Ecriture du champs cloudfrac,hice,totalcloudfrac |
---|
| 428 | c----------------------------------------------------------------------- |
---|
| 429 | call write_archive(nid,ntime,'hice', |
---|
| 430 | & 'Height of oceanic ice','m',2,hiceS) |
---|
| 431 | call write_archive(nid,ntime,'totalcloudfrac', |
---|
| 432 | & 'Total cloud Fraction','',2,totalcloudfracS) |
---|
| 433 | call write_archive(nid,ntime,'cloudfrac' |
---|
| 434 | & ,'Cloud fraction','',3,cloudfracS) |
---|
| 435 | c----------------------------------------------------------------------- |
---|
| 436 | c Fin |
---|
| 437 | c----------------------------------------------------------------------- |
---|
| 438 | ierr=NF_CLOSE(nid) |
---|
| 439 | |
---|
| 440 | end |
---|