[644] | 1 | c $Header$ |
---|
| 2 | c |
---|
| 3 | SUBROUTINE condsurf( jour, jourvrai, lmt_bils ) |
---|
[704] | 4 | USE dimphy |
---|
[644] | 5 | IMPLICIT none |
---|
| 6 | c |
---|
| 7 | c I. Musat 05.2005 |
---|
| 8 | c |
---|
| 9 | c Lire chaque jour le bilan de chaleur au sol issu |
---|
| 10 | c d'un run atmospherique afin de l'utiliser dans |
---|
| 11 | c dans un run "slab" ocean |
---|
| 12 | c ----------------------------------------- |
---|
| 13 | c jour : input , numero du jour a lire |
---|
| 14 | c jourvrai : input , vrai jour de la simulation |
---|
| 15 | c |
---|
| 16 | c lmt_bils: bilan chaleur au sol (a utiliser pour "slab-ocean") |
---|
| 17 | c |
---|
| 18 | #include "netcdf.inc" |
---|
| 19 | INTEGER nid, nvarid |
---|
| 20 | INTEGER debut(2) |
---|
| 21 | INTEGER epais(2) |
---|
| 22 | c |
---|
[704] | 23 | cym#include "dimensions.h" |
---|
| 24 | cym#include "dimphy.h" |
---|
[644] | 25 | #include "indicesol.h" |
---|
| 26 | #include "temps.h" |
---|
| 27 | #include "clesphys.h" |
---|
| 28 | c |
---|
| 29 | INTEGER nannemax |
---|
| 30 | PARAMETER ( nannemax = 60 ) |
---|
| 31 | c |
---|
[688] | 32 | INTEGER jour, jourvrai |
---|
[644] | 33 | REAL lmt_bils(klon) !bilan chaleur au sol |
---|
| 34 | c |
---|
| 35 | c Variables locales: |
---|
| 36 | INTEGER ig, i, kt, ierr |
---|
| 37 | LOGICAL ok |
---|
| 38 | INTEGER anneelim,anneemax |
---|
| 39 | CHARACTER*20 fich |
---|
[704] | 40 | |
---|
| 41 | REAL :: lmt_bils_glo(klon2) |
---|
| 42 | REAL,ALLOCATABLE,SAVE :: lmt_bils_mpi(:) |
---|
| 43 | |
---|
| 44 | LOGICAL,SAVE :: first |
---|
| 45 | c$OMP THREADPRIVATE(first) |
---|
[644] | 46 | cc |
---|
| 47 | cc ..................................................................... |
---|
| 48 | cc |
---|
| 49 | cc Pour lire le fichier limit correspondant vraiment a l'annee de la |
---|
| 50 | cc simulation en cours , il suffit de mettre ok_limitvrai = .TRUE. |
---|
| 51 | cc |
---|
| 52 | cc ...................................................................... |
---|
| 53 | c |
---|
| 54 | c |
---|
[704] | 55 | IF (first) THEN |
---|
| 56 | ALLOCATE(lmt_bils_mpi(klon_mpi)) |
---|
| 57 | ENDIF |
---|
| 58 | |
---|
[644] | 59 | IF (jour.LT.0 .OR. jour.GT.(360-1)) THEN |
---|
| 60 | PRINT*,'Le jour demande n est pas correct: ', jour |
---|
| 61 | CALL ABORT |
---|
| 62 | ENDIF |
---|
| 63 | c |
---|
| 64 | anneelim = annee_ref |
---|
| 65 | anneemax = annee_ref + nannemax |
---|
| 66 | c |
---|
| 67 | c |
---|
| 68 | IF( ok_limitvrai ) THEN |
---|
| 69 | DO kt = 1, nannemax |
---|
| 70 | IF(jourvrai.LE. (kt-1)*360 + 359 ) THEN |
---|
| 71 | WRITE(fich,'("limit",i4,".nc")') anneelim |
---|
| 72 | c PRINT *,' Fichier Limite ',fich |
---|
| 73 | GO TO 100 |
---|
| 74 | ENDIF |
---|
| 75 | anneelim = anneelim + 1 |
---|
| 76 | ENDDO |
---|
| 77 | |
---|
| 78 | PRINT *,' PBS ! Le jour a lire sur le fichier limit ne se ' |
---|
| 79 | PRINT *,' trouve pas sur les ',nannemax,' annees a partir de ' |
---|
| 80 | PRINT *,' l annee de debut', annee_ref |
---|
| 81 | CALL EXIT(1) |
---|
| 82 | c |
---|
| 83 | 100 CONTINUE |
---|
| 84 | c |
---|
| 85 | ELSE |
---|
| 86 | |
---|
| 87 | WRITE(fich,'("limitNEW.nc")') |
---|
| 88 | c PRINT *,' Fichier Limite ',fich |
---|
| 89 | ENDIF |
---|
| 90 | c |
---|
| 91 | c Ouvrir le fichier en format NetCDF: |
---|
| 92 | c |
---|
[704] | 93 | c$OMP MASTER |
---|
| 94 | IF (phy_rank==0) THEN |
---|
[644] | 95 | ierr = NF_OPEN (fich, NF_NOWRITE,nid) |
---|
| 96 | IF (ierr.NE.NF_NOERR) THEN |
---|
| 97 | WRITE(6,*)' Pb d''ouverture du fichier ', fich |
---|
| 98 | WRITE(6,*)' Le fichier limit ',fich,' (avec 4 chiffres , pour' |
---|
| 99 | WRITE(6,*)' l an 2000 ) , n existe pas ! ' |
---|
| 100 | WRITE(6,*)' ierr = ', ierr |
---|
| 101 | CALL EXIT(1) |
---|
| 102 | ENDIF |
---|
| 103 | c DO k = 1, jour |
---|
| 104 | c La tranche de donnees a lire: |
---|
| 105 | c |
---|
| 106 | debut(1) = 1 |
---|
[688] | 107 | debut(2) = jourvrai |
---|
[704] | 108 | epais(1) = klon2 |
---|
[644] | 109 | epais(2) = 1 |
---|
| 110 | c |
---|
| 111 | c Bilan flux de chaleur au sol: |
---|
| 112 | c |
---|
| 113 | ierr = NF_INQ_VARID (nid, "BILS", nvarid) |
---|
| 114 | IF (ierr .NE. NF_NOERR) THEN |
---|
| 115 | PRINT*, "condsurf: Le champ <BILS> est absent" |
---|
| 116 | CALL abort |
---|
| 117 | ENDIF |
---|
[688] | 118 | PRINT*,'debut,epais',debut,epais,'jour,jourvrai',jour,jourvrai |
---|
[644] | 119 | #ifdef NC_DOUBLE |
---|
[704] | 120 | ierr = NF_GET_VARA_DOUBLE(nid, nvarid,debut,epais,lmt_bils_glo) |
---|
[644] | 121 | #else |
---|
[704] | 122 | ierr = NF_GET_VARA_REAL(nid, nvarid,debut,epais,lmt_bils_glo) |
---|
[644] | 123 | #endif |
---|
| 124 | IF (ierr .NE. NF_NOERR) THEN |
---|
| 125 | PRINT*, "condsurf: Lecture echouee pour <BILS>" |
---|
| 126 | CALL abort |
---|
| 127 | ENDIF |
---|
| 128 | c ENDDO !k = 1, jour |
---|
| 129 | c |
---|
| 130 | c Fermer le fichier: |
---|
| 131 | c |
---|
| 132 | ierr = NF_CLOSE(nid) |
---|
[704] | 133 | |
---|
| 134 | ENDIF ! phyrank==0 |
---|
| 135 | |
---|
| 136 | CALL scatterField(lmt_bils_glo,lmt_bils_mpi,1) |
---|
| 137 | c$OMP END MASTER |
---|
| 138 | c$OMP BARRIER |
---|
| 139 | CALL scatterField_omp(lmt_bils_mpi,lmt_bils,1) |
---|
| 140 | |
---|
[644] | 141 | c |
---|
| 142 | c |
---|
| 143 | c PRINT*, 'lmt_bils est lu pour jour: ', jour |
---|
| 144 | c |
---|
| 145 | RETURN |
---|
| 146 | END |
---|