Changeset 2263 for LMDZ5/trunk
- Timestamp:
- Apr 17, 2015, 8:14:36 PM (10 years ago)
- Location:
- LMDZ5/trunk/libf
- Files:
-
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/dyn3d/guide_mod.F90
r2249 r2263 81 81 ! Lecture des parametres: 82 82 ! --------------------------------------------- 83 call ini_getparam("nudging_parameters_out.txt") 83 84 ! Variables guidees 84 85 CALL getpar('guide_u',.true.,guide_u,'guidage de u') … … 147 148 CALL getpar('guide_2D',.false.,guide_2D,'fichier guidage lat-P') 148 149 150 call fin_getparam 151 149 152 ! --------------------------------------------- 150 153 ! Determination du nombre de niveaux verticaux -
LMDZ5/trunk/libf/dyn3dmem/gcm.F90
r2262 r2263 1 !2 1 ! $Id: $ 3 ! 4 c 5 c 6 PROGRAM gcm 2 3 PROGRAM gcm 7 4 8 5 #ifdef CPP_IOIPSL 9 10 #endif 11 12 13 14 6 USE IOIPSL 7 #endif 8 9 USE mod_const_mpi, ONLY: init_const_mpi 10 USE parallel_lmdz 11 USE infotrac 15 12 #ifdef CPP_PHYS 16 USE mod_interface_dyn_phys, ONLY: init_interface_dyn_phys 17 #endif 18 USE mod_hallo 19 USE Bands 20 USE getparam 21 USE filtreg_mod 22 USE control_mod 13 USE mod_interface_dyn_phys, ONLY: init_interface_dyn_phys 14 #endif 15 USE mod_hallo 16 USE Bands 17 USE filtreg_mod 18 USE control_mod 23 19 24 20 #ifdef INCA 25 ! Only INCA needs these informations (from the Earth's physics)26 27 21 ! Only INCA needs these informations (from the Earth's physics) 22 USE indice_sol_mod 23 USE mod_phys_lmdz_omp_data, ONLY: klon_omp 28 24 #endif 29 25 30 26 #ifdef CPP_PHYS 31 ! USE mod_grid_phy_lmdz32 ! USE mod_phys_lmdz_para, ONLY : klon_mpi_para_nb33 ! USE dimphy34 ! USE comgeomphy35 #endif 36 37 38 c...... Version du 10/01/98 ..........39 40 cavec coordonnees verticales hybrides41 cavec nouveaux operat. dissipation * ( gradiv2,divgrad2,nxgraro2 )42 43 c=======================================================================44 c 45 cAuteur: P. Le Van /L. Fairhead/F.Hourdin46 c-------47 c 48 cObjet:49 c------50 c 51 cGCM LMD nouvelle grille52 c 53 c=======================================================================54 c 55 c... Dans inigeom , nouveaux calculs pour les elongations cu , cv56 cet possibilite d'appeler une fonction f(y) a derivee tangente57 chyperbolique a la place de la fonction a derivee sinusoidale.58 c... Possibilite de choisir le schema pour l'advection de59 cq , en modifiant iadv dans traceur.def (MAF,10/02) .60 c 61 cPour Van-Leer + Vapeur d'eau saturee, iadv(1)=4. (F.Codron,10/99)62 cPour Van-Leer iadv=1063 c 64 c-----------------------------------------------------------------------65 cDeclarations:66 c-------------67 #include "dimensions.h"68 #include "paramet.h"69 #include "comconst.h"70 #include "comdissnew.h"71 #include "comvert.h"72 #include "comgeom.h"73 #include "logic.h"74 #include "temps.h"75 #include "ener.h"76 #include "description.h"77 #include "serre.h"78 !#include "com_io_dyn.h"79 #include "iniprint.h"80 #include "tracstoke.h"27 ! USE mod_grid_phy_lmdz 28 ! USE mod_phys_lmdz_para, ONLY : klon_mpi_para_nb 29 ! USE dimphy 30 ! USE comgeomphy 31 #endif 32 IMPLICIT NONE 33 34 ! ...... Version du 10/01/98 .......... 35 36 ! avec coordonnees verticales hybrides 37 ! avec nouveaux operat. dissipation * ( gradiv2,divgrad2,nxgraro2 ) 38 39 !======================================================================= 40 ! 41 ! Auteur: P. Le Van /L. Fairhead/F.Hourdin 42 ! ------- 43 ! 44 ! Objet: 45 ! ------ 46 ! 47 ! GCM LMD nouvelle grille 48 ! 49 !======================================================================= 50 ! 51 ! ... Dans inigeom , nouveaux calculs pour les elongations cu , cv 52 ! et possibilite d'appeler une fonction f(y) a derivee tangente 53 ! hyperbolique a la place de la fonction a derivee sinusoidale. 54 ! ... Possibilite de choisir le schema pour l'advection de 55 ! q , en modifiant iadv dans traceur.def (MAF,10/02) . 56 ! 57 ! Pour Van-Leer + Vapeur d'eau saturee, iadv(1)=4. (F.Codron,10/99) 58 ! Pour Van-Leer iadv=10 59 ! 60 !----------------------------------------------------------------------- 61 ! Declarations: 62 ! ------------- 63 include "dimensions.h" 64 include "paramet.h" 65 include "comconst.h" 66 include "comdissnew.h" 67 include "comvert.h" 68 include "comgeom.h" 69 include "logic.h" 70 include "temps.h" 71 include "ener.h" 72 include "description.h" 73 include "serre.h" 74 !include "com_io_dyn.h" 75 include "iniprint.h" 76 include "tracstoke.h" 81 77 82 78 #ifdef INCA 83 ! Only INCA needs these informations (from the Earth's physics) 84 !#include "indicesol.h" 85 #endif 86 87 REAL zdtvr 88 89 c variables dynamiques 90 REAL,ALLOCATABLE,SAVE :: vcov(:,:),ucov(:,:) ! vents covariants 91 REAL,ALLOCATABLE,SAVE :: teta(:,:) ! temperature potentielle 92 REAL, ALLOCATABLE,SAVE :: q(:,:,:) ! champs advectes 93 REAL,ALLOCATABLE,SAVE :: ps(:) ! pression au sol 94 c REAL p (ip1jmp1,llmp1 ) ! pression aux interfac.des couches 95 REAL,ALLOCATABLE,SAVE :: masse(:,:) ! masse d'air 96 REAL,ALLOCATABLE,SAVE :: phis(:) ! geopotentiel au sol 97 c REAL phi(ip1jmp1,llm) ! geopotentiel 98 c REAL w(ip1jmp1,llm) ! vitesse verticale 99 100 c variables dynamiques intermediaire pour le transport 101 102 c variables pour le fichier histoire 103 REAL dtav ! intervalle de temps elementaire 104 105 REAL time_0 106 107 LOGICAL lafin 108 109 real time_step, t_wrt, t_ops 110 111 c+jld variables test conservation energie 112 c REAL ecin(ip1jmp1,llm),ecin0(ip1jmp1,llm) 113 C Tendance de la temp. potentiel d (theta)/ d t due a la 114 C tansformation d'energie cinetique en energie thermique 115 C cree par la dissipation 116 c REAL dhecdt(ip1jmp1,llm) 117 c REAL vcont(ip1jm,llm),ucont(ip1jmp1,llm) 118 c REAL d_h_vcol, d_qt, d_qw, d_ql, d_ec 119 c CHARACTER (len=15) :: ztit 120 c-jld 121 122 123 character (len=80) :: dynhist_file, dynhistave_file 124 character (len=20) :: modname 125 character (len=80) :: abort_message 126 ! locales pour gestion du temps 127 INTEGER :: an, mois, jour 128 REAL :: heure 129 130 131 c----------------------------------------------------------------------- 132 c Initialisations: 133 c ---------------- 134 135 abort_message = 'last timestep reached' 136 modname = 'gcm' 137 descript = 'Run GCM LMDZ' 138 lafin = .FALSE. 139 dynhist_file = 'dyn_hist' 140 dynhistave_file = 'dyn_hist_ave' 141 142 143 144 c---------------------------------------------------------------------- 145 c lecture des fichiers gcm.def ou run.def 146 c --------------------------------------- 147 c 148 CALL conf_gcm( 99, .TRUE. ) 149 if (mod(iphysiq, iperiod) /= 0) call abort_gcm("conf_gcm", 150 s "iphysiq must be a multiple of iperiod", 1) 151 c 152 c 153 c------------------------------------ 154 c Initialisation partie parallele 155 c------------------------------------ 156 CALL init_const_mpi 157 158 call init_parallel 159 call ini_getparam("out.def") 160 call Read_Distrib 79 ! Only INCA needs these informations (from the Earth's physics) 80 !include "indicesol.h" 81 #endif 82 83 REAL zdtvr 84 85 ! variables dynamiques 86 REAL,ALLOCATABLE,SAVE :: vcov(:,:),ucov(:,:) ! vents covariants 87 REAL,ALLOCATABLE,SAVE :: teta(:,:) ! temperature potentielle 88 REAL, ALLOCATABLE,SAVE :: q(:,:,:) ! champs advectes 89 REAL,ALLOCATABLE,SAVE :: ps(:) ! pression au sol 90 ! REAL p (ip1jmp1,llmp1 ) ! pression aux interfac.des couches 91 REAL,ALLOCATABLE,SAVE :: masse(:,:) ! masse d'air 92 REAL,ALLOCATABLE,SAVE :: phis(:) ! geopotentiel au sol 93 ! REAL phi(ip1jmp1,llm) ! geopotentiel 94 ! REAL w(ip1jmp1,llm) ! vitesse verticale 95 96 ! variables dynamiques intermediaire pour le transport 97 98 ! variables pour le fichier histoire 99 REAL dtav ! intervalle de temps elementaire 100 101 REAL time_0 102 103 LOGICAL lafin 104 105 real time_step, t_wrt, t_ops 106 107 !+jld variables test conservation energie 108 ! REAL ecin(ip1jmp1,llm),ecin0(ip1jmp1,llm) 109 ! Tendance de la temp. potentiel d (theta)/ d t due a la 110 ! tansformation d'energie cinetique en energie thermique 111 ! cree par la dissipation 112 ! REAL dhecdt(ip1jmp1,llm) 113 ! REAL vcont(ip1jm,llm),ucont(ip1jmp1,llm) 114 ! REAL d_h_vcol, d_qt, d_qw, d_ql, d_ec 115 ! CHARACTER (len=15) :: ztit 116 !-jld 117 118 119 character (len=80) :: dynhist_file, dynhistave_file 120 character (len=20) :: modname 121 character (len=80) :: abort_message 122 ! locales pour gestion du temps 123 INTEGER :: an, mois, jour 124 REAL :: heure 125 126 127 !----------------------------------------------------------------------- 128 ! Initialisations: 129 ! ---------------- 130 131 abort_message = 'last timestep reached' 132 modname = 'gcm' 133 descript = 'Run GCM LMDZ' 134 lafin = .FALSE. 135 dynhist_file = 'dyn_hist' 136 dynhistave_file = 'dyn_hist_ave' 137 138 139 140 !---------------------------------------------------------------------- 141 ! lecture des fichiers gcm.def ou run.def 142 ! --------------------------------------- 143 ! 144 CALL conf_gcm( 99, .TRUE. ) 145 if (mod(iphysiq, iperiod) /= 0) call abort_gcm("conf_gcm", & 146 "iphysiq must be a multiple of iperiod", 1) 147 ! 148 ! 149 !------------------------------------ 150 ! Initialisation partie parallele 151 !------------------------------------ 152 CALL init_const_mpi 153 154 call init_parallel 155 call Read_Distrib 161 156 162 157 #ifdef CPP_PHYS 163 164 !#endif165 ! CALL set_bands166 !#ifdef CPP_PHYS167 168 #endif 169 170 171 172 173 174 175 c$OMP PARALLEL176 177 c$OMP END PARALLEL178 179 !#ifdef CPP_PHYS180 !c$OMP PARALLEL181 ! call InitComgeomphy ! now done in iniphysiq182 !c$OMP END PARALLEL183 !#endif184 185 c-----------------------------------------------------------------------186 cChoix du calendrier187 c-------------------188 189 ccalend = 'earth_365d'158 CALL Init_Phys_lmdz(iim,jjp1,llm,mpi_size,distrib_phys) 159 !#endif 160 ! CALL set_bands 161 !#ifdef CPP_PHYS 162 CALL Init_interface_dyn_phys 163 #endif 164 CALL barrier 165 166 CALL set_bands 167 if (mpi_rank==0) call WriteBands 168 call Set_Distrib(distrib_caldyn) 169 170 !$OMP PARALLEL 171 call Init_Mod_hallo 172 !$OMP END PARALLEL 173 174 !#ifdef CPP_PHYS 175 !c$OMP PARALLEL 176 ! call InitComgeomphy ! now done in iniphysiq 177 !c$OMP END PARALLEL 178 !#endif 179 180 !----------------------------------------------------------------------- 181 ! Choix du calendrier 182 ! ------------------- 183 184 ! calend = 'earth_365d' 190 185 191 186 #ifdef CPP_IOIPSL 192 193 194 195 196 197 198 199 200 201 202 203 204 205 #endif 206 207 187 if (calend == 'earth_360d') then 188 call ioconf_calendar('360d') 189 write(lunout,*)'CALENDRIER CHOISI: Terrestre a 360 jours/an' 190 else if (calend == 'earth_365d') then 191 call ioconf_calendar('noleap') 192 write(lunout,*)'CALENDRIER CHOISI: Terrestre a 365 jours/an' 193 else if (calend == 'gregorian') then 194 call ioconf_calendar('gregorian') 195 write(lunout,*)'CALENDRIER CHOISI: Terrestre bissextile' 196 else 197 abort_message = 'Mauvais choix de calendrier' 198 call abort_gcm(modname,abort_message,1) 199 endif 200 #endif 201 202 IF (type_trac == 'inca') THEN 208 203 #ifdef INCA 209 call init_const_lmdz(210 $ nbtr,anneeref,dayref,211 $ iphysiq,day_step,nday,212 $ nbsrf, is_oce,is_sic,213 $is_ter,is_lic, calend)214 215 call init_inca_para(216 $ iim,jjm+1,llm,klon_glo,mpi_size,217 $distrib_phys,COMM_LMDZ)218 #endif 219 220 221 c-----------------------------------------------------------------------222 cInitialisation des traceurs223 c---------------------------224 cChoix du nombre de traceurs et du schema pour l'advection225 cdans fichier traceur.def, par default ou via INCA226 227 228 cAllocation de la tableau q : champs advectes229 230 231 232 233 234 235 236 237 c-----------------------------------------------------------------------238 cLecture de l'etat initial :239 c---------------------------240 241 clecture du fichier start.nc242 243 244 245 246 247 248 249 ! if (planet_type.eq."earth") then250 ! Load an Earth-format start file251 CALL dynetat0_loc("start.nc",vcov,ucov,252 &teta,q,masse,ps,phis, time_0)253 ! endif ! of if (planet_type.eq."earth")254 255 cwrite(73,*) 'ucov',ucov256 cwrite(74,*) 'vcov',vcov257 cwrite(75,*) 'teta',teta258 cwrite(76,*) 'ps',ps259 cwrite(77,*) 'q',q260 261 262 263 cle cas echeant, creation d un etat initial264 IF (prt_level > 9) WRITE(lunout,*)265 .'GCM: AVANT iniacademic AVANT AVANT AVANT AVANT'266 267 268 269 270 c-----------------------------------------------------------------------271 cLecture des parametres de controle pour la simulation :272 c-------------------------------------------------------273 con recalcule eventuellement le pas de temps274 275 276 abort_message =277 .'Il faut choisir un nb de pas par jour multiple de iperiod'278 279 280 281 282 abort_message =283 *'Il faut choisir un nb de pas par jour multiple de iphysiq'284 285 286 287 288 289 WRITE(lunout,*)290 .'WARNING!!! changement de pas de temps',dtvr,'>',zdtvr291 292 293 C 294 Con remet le calendrier \`a zero si demande295 c 296 297 WRITE(lunout,*)' GCM: Attention l''heure de depart lue dans le'298 &,' fichier restart ne correspond pas a celle lue dans le run.def'299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 write(lunout,*)315 .'GCM: On reinitialise a la date lue dans gcm.def'316 317 write(lunout,*)318 .'GCM: Attention les dates initiales lues dans le fichier'319 write(lunout,*)320 .' restart ne correspondent pas a celles lues dans '321 322 323 324 325 326 cif (annee_ref .ne. anneeref .or. day_ref .ne. dayref) then327 cwrite(lunout,*)328 c. 'GCM: Attention les dates initiales lues dans le fichier'329 cwrite(lunout,*)330 c. ' restart ne correspondent pas a celles lues dans '331 cwrite(lunout,*)' gcm.def'332 cwrite(lunout,*)' annee_ref=',annee_ref," anneeref=",anneeref333 cwrite(lunout,*)' day_ref=',day_ref," dayref=",dayref334 cif (raz_date .ne. 1) then335 cwrite(lunout,*)336 c. 'GCM: On garde les dates du fichier restart'337 celse338 cannee_ref = anneeref339 cday_ref = dayref340 cday_ini = dayref341 citau_dyn = 0342 citau_phy = 0343 ctime_0 = 0.344 cwrite(lunout,*)345 c. 'GCM: On reinitialise a la date lue dans gcm.def'346 cendif347 cELSE348 craz_date = 0349 cendif204 call init_const_lmdz( & 205 nbtr,anneeref,dayref, & 206 iphysiq,day_step,nday, & 207 nbsrf, is_oce,is_sic, & 208 is_ter,is_lic, calend) 209 210 call init_inca_para( & 211 iim,jjm+1,llm,klon_glo,mpi_size, & 212 distrib_phys,COMM_LMDZ) 213 #endif 214 END IF 215 216 !----------------------------------------------------------------------- 217 ! Initialisation des traceurs 218 ! --------------------------- 219 ! Choix du nombre de traceurs et du schema pour l'advection 220 ! dans fichier traceur.def, par default ou via INCA 221 call infotrac_init 222 223 ! Allocation de la tableau q : champs advectes 224 ALLOCATE(ucov(ijb_u:ije_u,llm)) 225 ALLOCATE(vcov(ijb_v:ije_v,llm)) 226 ALLOCATE(teta(ijb_u:ije_u,llm)) 227 ALLOCATE(masse(ijb_u:ije_u,llm)) 228 ALLOCATE(ps(ijb_u:ije_u)) 229 ALLOCATE(phis(ijb_u:ije_u)) 230 ALLOCATE(q(ijb_u:ije_u,llm,nqtot)) 231 232 !----------------------------------------------------------------------- 233 ! Lecture de l'etat initial : 234 ! --------------------------- 235 236 ! lecture du fichier start.nc 237 if (read_start) then 238 ! we still need to run iniacademic to initialize some 239 ! constants & fields, if we run the 'newtonian' or 'SW' cases: 240 if (iflag_phys.ne.1) then 241 CALL iniacademic_loc(vcov,ucov,teta,q,masse,ps,phis,time_0) 242 endif 243 244 ! if (planet_type.eq."earth") then 245 ! Load an Earth-format start file 246 CALL dynetat0_loc("start.nc",vcov,ucov, & 247 teta,q,masse,ps,phis, time_0) 248 ! endif ! of if (planet_type.eq."earth") 249 250 ! write(73,*) 'ucov',ucov 251 ! write(74,*) 'vcov',vcov 252 ! write(75,*) 'teta',teta 253 ! write(76,*) 'ps',ps 254 ! write(77,*) 'q',q 255 256 endif ! of if (read_start) 257 258 ! le cas echeant, creation d un etat initial 259 IF (prt_level > 9) WRITE(lunout,*) & 260 'GCM: AVANT iniacademic AVANT AVANT AVANT AVANT' 261 if (.not.read_start) then 262 CALL iniacademic_loc(vcov,ucov,teta,q,masse,ps,phis,time_0) 263 endif 264 265 !----------------------------------------------------------------------- 266 ! Lecture des parametres de controle pour la simulation : 267 ! ------------------------------------------------------- 268 ! on recalcule eventuellement le pas de temps 269 270 IF(MOD(day_step,iperiod).NE.0) THEN 271 abort_message = & 272 'Il faut choisir un nb de pas par jour multiple de iperiod' 273 call abort_gcm(modname,abort_message,1) 274 ENDIF 275 276 IF(MOD(day_step,iphysiq).NE.0) THEN 277 abort_message = & 278 'Il faut choisir un nb de pas par jour multiple de iphysiq' 279 call abort_gcm(modname,abort_message,1) 280 ENDIF 281 282 zdtvr = daysec/REAL(day_step) 283 IF(dtvr.NE.zdtvr) THEN 284 WRITE(lunout,*) & 285 'WARNING!!! changement de pas de temps',dtvr,'>',zdtvr 286 ENDIF 287 288 ! 289 ! on remet le calendrier \`a zero si demande 290 ! 291 IF (start_time /= starttime) then 292 WRITE(lunout,*)' GCM: Attention l''heure de depart lue dans le' & 293 ,' fichier restart ne correspond pas a celle lue dans le run.def' 294 IF (raz_date == 1) then 295 WRITE(lunout,*)'Je prends l''heure lue dans run.def' 296 start_time = starttime 297 ELSE 298 WRITE(lunout,*)'Je m''arrete' 299 CALL abort 300 ENDIF 301 ENDIF 302 IF (raz_date == 1) THEN 303 annee_ref = anneeref 304 day_ref = dayref 305 day_ini = dayref 306 itau_dyn = 0 307 itau_phy = 0 308 time_0 = 0. 309 write(lunout,*) & 310 'GCM: On reinitialise a la date lue dans gcm.def' 311 ELSE IF (annee_ref .ne. anneeref .or. day_ref .ne. dayref) THEN 312 write(lunout,*) & 313 'GCM: Attention les dates initiales lues dans le fichier' 314 write(lunout,*) & 315 ' restart ne correspondent pas a celles lues dans ' 316 write(lunout,*)' gcm.def' 317 write(lunout,*)' annee_ref=',annee_ref," anneeref=",anneeref 318 write(lunout,*)' day_ref=',day_ref," dayref=",dayref 319 write(lunout,*)' Pas de remise a zero' 320 ENDIF 321 ! if (annee_ref .ne. anneeref .or. day_ref .ne. dayref) then 322 ! write(lunout,*) 323 ! . 'GCM: Attention les dates initiales lues dans le fichier' 324 ! write(lunout,*) 325 ! . ' restart ne correspondent pas a celles lues dans ' 326 ! write(lunout,*)' gcm.def' 327 ! write(lunout,*)' annee_ref=',annee_ref," anneeref=",anneeref 328 ! write(lunout,*)' day_ref=',day_ref," dayref=",dayref 329 ! if (raz_date .ne. 1) then 330 ! write(lunout,*) 331 ! . 'GCM: On garde les dates du fichier restart' 332 ! else 333 ! annee_ref = anneeref 334 ! day_ref = dayref 335 ! day_ini = dayref 336 ! itau_dyn = 0 337 ! itau_phy = 0 338 ! time_0 = 0. 339 ! write(lunout,*) 340 ! . 'GCM: On reinitialise a la date lue dans gcm.def' 341 ! endif 342 ! ELSE 343 ! raz_date = 0 344 ! endif 350 345 351 346 #ifdef CPP_IOIPSL 352 353 354 355 356 357 358 359 360 361 362 363 364 365 347 mois = 1 348 heure = 0. 349 call ymds2ju(annee_ref, mois, day_ref, heure, jD_ref) 350 jH_ref = jD_ref - int(jD_ref) 351 jD_ref = int(jD_ref) 352 353 call ioconf_startdate(INT(jD_ref), jH_ref) 354 355 write(lunout,*)'DEBUG' 356 write(lunout,*)'annee_ref, mois, day_ref, heure, jD_ref' 357 write(lunout,*)annee_ref, mois, day_ref, heure, jD_ref 358 call ju2ymds(jD_ref+jH_ref,an, mois, jour, heure) 359 write(lunout,*)'jD_ref+jH_ref,an, mois, jour, heure' 360 write(lunout,*)jD_ref+jH_ref,an, mois, jour, heure 366 361 #else 367 ! Ehouarn: we still need to define JD_ref and JH_ref368 ! and since we don't know how many days there are in a year369 ! we set JD_ref to 0 (this should be improved ...)370 371 372 #endif 373 374 375 376 377 c-----------------------------------------------------------------------378 cInitialisation des constantes dynamiques :379 c------------------------------------------380 381 382 383 c-----------------------------------------------------------------------384 cInitialisation de la geometrie :385 c--------------------------------386 387 388 c-----------------------------------------------------------------------389 cInitialisation du filtre :390 c--------------------------391 392 393 c 394 c-----------------------------------------------------------------------395 cInitialisation de la dissipation :396 c----------------------------------397 398 CALL inidissip( lstardis, nitergdiv, nitergrot, niterh ,399 *tetagdiv, tetagrot , tetatemp, vert_prof_dissip)400 401 c-----------------------------------------------------------------------402 cInitialisation de la physique :403 c-------------------------------404 405 ! Physics:362 ! Ehouarn: we still need to define JD_ref and JH_ref 363 ! and since we don't know how many days there are in a year 364 ! we set JD_ref to 0 (this should be improved ...) 365 jD_ref=0 366 jH_ref=0 367 #endif 368 369 if (iflag_phys.eq.1) then 370 ! these initialisations have already been done (via iniacademic) 371 ! if running in SW or Newtonian mode 372 !----------------------------------------------------------------------- 373 ! Initialisation des constantes dynamiques : 374 ! ------------------------------------------ 375 dtvr = zdtvr 376 CALL iniconst 377 378 !----------------------------------------------------------------------- 379 ! Initialisation de la geometrie : 380 ! -------------------------------- 381 CALL inigeom 382 383 !----------------------------------------------------------------------- 384 ! Initialisation du filtre : 385 ! -------------------------- 386 CALL inifilr 387 endif ! of if (iflag_phys.eq.1) 388 ! 389 !----------------------------------------------------------------------- 390 ! Initialisation de la dissipation : 391 ! ---------------------------------- 392 393 CALL inidissip( lstardis, nitergdiv, nitergrot, niterh , & 394 tetagdiv, tetagrot , tetatemp, vert_prof_dissip) 395 396 !----------------------------------------------------------------------- 397 ! Initialisation de la physique : 398 ! ------------------------------- 399 IF ((iflag_phys==1).or.(iflag_phys>=100)) THEN 400 ! Physics: 406 401 #ifdef CPP_PHYS 407 CALL iniphysiq(iim,jjm,llm,daysec,day_ini,dtphys/nsplit_phys,408 & rlatu,rlonv,aire,cu,cv,rad,g,r,cpp,409 &iflag_phys)410 #endif 411 412 413 414 c-----------------------------------------------------------------------415 cInitialisation des dimensions d'INCA :416 c--------------------------------------417 418 !$OMP PARALLEL402 CALL iniphysiq(iim,jjm,llm,daysec,day_ini,dtphys/nsplit_phys, & 403 rlatu,rlonv,aire,cu,cv,rad,g,r,cpp, & 404 iflag_phys) 405 #endif 406 ENDIF ! of IF ((iflag_phys==1).or.(iflag_phys>=100)) 407 408 409 !----------------------------------------------------------------------- 410 ! Initialisation des dimensions d'INCA : 411 ! -------------------------------------- 412 IF (type_trac == 'inca') THEN 413 !$OMP PARALLEL 419 414 #ifdef INCA 420 CALL init_inca_dim(klon_omp,llm,iim,jjm,421 $rlonu,rlatu,rlonv,rlatv)422 #endif 423 !$OMP END PARALLEL424 425 426 c-----------------------------------------------------------------------427 cInitialisation des I/O :428 c------------------------429 430 431 432 433 434 435 436 437 438 300FORMAT('1'/,15x,'run du jour',i7,2x,'au jour',i7//)415 CALL init_inca_dim(klon_omp,llm,iim,jjm, & 416 rlonu,rlatu,rlonv,rlatv) 417 #endif 418 !$OMP END PARALLEL 419 END IF 420 421 !----------------------------------------------------------------------- 422 ! Initialisation des I/O : 423 ! ------------------------ 424 425 426 if (nday>=0) then 427 day_end = day_ini + nday 428 else 429 day_end = day_ini - nday/day_step 430 endif 431 432 WRITE(lunout,300)day_ini,day_end 433 300 FORMAT('1'/,15x,'run du jour',i7,2x,'au jour',i7//) 439 434 440 435 #ifdef CPP_IOIPSL 441 442 443 444 445 301FORMAT('1'/,15x,'run du ', i2,'/',i2,'/',i4)446 302FORMAT('1'/,15x,' au ', i2,'/',i2,'/',i4)447 #endif 448 449 ! if (planet_type.eq."earth") then450 ! Write an Earth-format restart file451 452 ! endif453 454 436 call ju2ymds(jD_ref + day_ini - day_ref, an, mois, jour, heure) 437 write (lunout,301)jour, mois, an 438 call ju2ymds(jD_ref + day_end - day_ref, an, mois, jour, heure) 439 write (lunout,302)jour, mois, an 440 301 FORMAT('1'/,15x,'run du ', i2,'/',i2,'/',i4) 441 302 FORMAT('1'/,15x,' au ', i2,'/',i2,'/',i4) 442 #endif 443 444 ! if (planet_type.eq."earth") then 445 ! Write an Earth-format restart file 446 CALL dynredem0_loc("restart.nc", day_end, phis) 447 ! endif 448 449 ecripar = .TRUE. 455 450 456 451 #ifdef CPP_IOIPSL 457 time_step = zdtvr 458 IF (mpi_rank==0) then 459 if (ok_dyn_ins) then 460 ! initialize output file for instantaneous outputs 461 ! t_ops = iecri * daysec ! do operations every t_ops 462 t_ops =((1.0*iecri)/day_step) * daysec 463 t_wrt = daysec ! iecri * daysec ! write output every t_wrt 464 t_wrt = daysec ! iecri * daysec ! write output every t_wrt 465 CALL inithist(day_ref,annee_ref,time_step, 466 & t_ops,t_wrt) 467 endif 468 469 IF (ok_dyn_ave) THEN 470 ! initialize output file for averaged outputs 471 t_ops = iperiod * time_step ! do operations every t_ops 472 t_wrt = periodav * daysec ! write output every t_wrt 473 CALL initdynav_loc(day_ref,annee_ref,time_step,t_ops,t_wrt) 474 END IF 475 ENDIF 476 dtav = iperiod*dtvr/daysec 477 #endif 478 ! #endif of #ifdef CPP_IOIPSL 479 480 c Choix des frequences de stokage pour le offline 481 c istdyn=day_step/4 ! stockage toutes les 6h=1jour/4 482 c istdyn=day_step/12 ! stockage toutes les 2h=1jour/12 483 istdyn=day_step/4 ! stockage toutes les 6h=1jour/12 484 istphy=istdyn/iphysiq 485 486 487 c 488 c----------------------------------------------------------------------- 489 c Integration temporelle du modele : 490 c ---------------------------------- 491 492 c write(78,*) 'ucov',ucov 493 c write(78,*) 'vcov',vcov 494 c write(78,*) 'teta',teta 495 c write(78,*) 'ps',ps 496 c write(78,*) 'q',q 497 498 c$OMP PARALLEL DEFAULT(SHARED) COPYIN(/temps/,/logici/,/logicl/) 499 CALL leapfrog_loc(ucov,vcov,teta,ps,masse,phis,q,time_0) 500 c$OMP END PARALLEL 501 502 ! OPEN(unit=5487,file='ok_lmdz',status='replace') 503 ! WRITE(5487,*) 'ok_lmdz' 504 ! CLOSE(5487) 505 END 506 452 time_step = zdtvr 453 IF (mpi_rank==0) then 454 if (ok_dyn_ins) then 455 ! initialize output file for instantaneous outputs 456 ! t_ops = iecri * daysec ! do operations every t_ops 457 t_ops =((1.0*iecri)/day_step) * daysec 458 t_wrt = daysec ! iecri * daysec ! write output every t_wrt 459 t_wrt = daysec ! iecri * daysec ! write output every t_wrt 460 CALL inithist(day_ref,annee_ref,time_step, & 461 t_ops,t_wrt) 462 endif 463 464 IF (ok_dyn_ave) THEN 465 ! initialize output file for averaged outputs 466 t_ops = iperiod * time_step ! do operations every t_ops 467 t_wrt = periodav * daysec ! write output every t_wrt 468 CALL initdynav_loc(day_ref,annee_ref,time_step,t_ops,t_wrt) 469 END IF 470 ENDIF 471 dtav = iperiod*dtvr/daysec 472 #endif 473 ! #endif of #ifdef CPP_IOIPSL 474 475 ! Choix des frequences de stokage pour le offline 476 ! istdyn=day_step/4 ! stockage toutes les 6h=1jour/4 477 ! istdyn=day_step/12 ! stockage toutes les 2h=1jour/12 478 istdyn=day_step/4 ! stockage toutes les 6h=1jour/12 479 istphy=istdyn/iphysiq 480 481 482 ! 483 !----------------------------------------------------------------------- 484 ! Integration temporelle du modele : 485 ! ---------------------------------- 486 487 ! write(78,*) 'ucov',ucov 488 ! write(78,*) 'vcov',vcov 489 ! write(78,*) 'teta',teta 490 ! write(78,*) 'ps',ps 491 ! write(78,*) 'q',q 492 493 !$OMP PARALLEL DEFAULT(SHARED) COPYIN(/temps/,/logici/,/logicl/) 494 CALL leapfrog_loc(ucov,vcov,teta,ps,masse,phis,q,time_0) 495 !$OMP END PARALLEL 496 497 ! OPEN(unit=5487,file='ok_lmdz',status='replace') 498 ! WRITE(5487,*) 'ok_lmdz' 499 ! CLOSE(5487) 500 END PROGRAM gcm -
LMDZ5/trunk/libf/dyn3dmem/guide_loc_mod.F90
r2134 r2263 87 87 ! Lecture des parametres: 88 88 ! --------------------------------------------- 89 call ini_getparam("nudging_parameters_out.txt") 89 90 ! Variables guidees 90 91 CALL getpar('guide_u',.true.,guide_u,'guidage de u') … … 159 160 CALL getpar('guide_2D',.false.,guide_2D,'fichier guidage lat-P') 160 161 162 call fin_getparam 163 161 164 ! --------------------------------------------- 162 165 ! Determination du nombre de niveaux verticaux
Note: See TracChangeset
for help on using the changeset viewer.