- Timestamp:
- Apr 15, 2015, 6:49:07 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
dynamico_lmdz/aquaplanet/LMDZ5/libf/phylmd/traclmdz_mod.F90
r3809 r3814 67 67 68 68 USE dimphy 69 USE infotrac 69 USE infotrac_phy 70 70 71 71 ! Input argument … … 77 77 ! Allocate restart variables trs 78 78 ALLOCATE( trs(klon,nbtr), stat=ierr) 79 IF (ierr /= 0) CALL abort_ gcm('traclmdz_from_restart', 'pb in allocation 1',1)79 IF (ierr /= 0) CALL abort_physic('traclmdz_from_restart', 'pb in allocation 1',1) 80 80 81 81 ! Initialize trs with values read from restart file … … 89 89 ! Initialization of the tracers should be done here only for those not found in the restart file. 90 90 USE dimphy 91 USE infotrac 91 USE infotrac_phy 92 92 USE regr_pr_comb_coefoz_m, ONLY: alloc_coefoz 93 93 USE press_coefoz_m, ONLY: press_coefoz … … 133 133 ! -------------------------------------------- 134 134 ALLOCATE( scavtr(nbtr), stat=ierr) 135 IF (ierr /= 0) CALL abort_ gcm('traclmdz_init', 'pb in allocation 9',1)135 IF (ierr /= 0) CALL abort_physic('traclmdz_init', 'pb in allocation 9',1) 136 136 scavtr(:)=1. 137 137 138 138 ALLOCATE( radio(nbtr), stat=ierr) 139 IF (ierr /= 0) CALL abort_ gcm('traclmdz_init', 'pb in allocation 11',1)139 IF (ierr /= 0) CALL abort_physic('traclmdz_init', 'pb in allocation 11',1) 140 140 radio(:) = .false. ! Par defaut pas decroissance radioactive 141 141 142 142 ALLOCATE( masktr(klon,nbtr), stat=ierr) 143 IF (ierr /= 0) CALL abort_ gcm('traclmdz_init', 'pb in allocation 2',1)143 IF (ierr /= 0) CALL abort_physic('traclmdz_init', 'pb in allocation 2',1) 144 144 145 145 ALLOCATE( fshtr(klon,nbtr), stat=ierr) 146 IF (ierr /= 0) CALL abort_ gcm('traclmdz_init', 'pb in allocation 3',1)146 IF (ierr /= 0) CALL abort_physic('traclmdz_init', 'pb in allocation 3',1) 147 147 148 148 ALLOCATE( hsoltr(nbtr), stat=ierr) 149 IF (ierr /= 0) CALL abort_ gcm('traclmdz_init', 'pb in allocation 4',1)149 IF (ierr /= 0) CALL abort_physic('traclmdz_init', 'pb in allocation 4',1) 150 150 151 151 ALLOCATE( tautr(nbtr), stat=ierr) 152 IF (ierr /= 0) CALL abort_ gcm('traclmdz_init', 'pb in allocation 5',1)152 IF (ierr /= 0) CALL abort_physic('traclmdz_init', 'pb in allocation 5',1) 153 153 tautr(:) = 0. 154 154 155 155 ALLOCATE( vdeptr(nbtr), stat=ierr) 156 IF (ierr /= 0) CALL abort_ gcm('traclmdz_init', 'pb in allocation 6',1)156 IF (ierr /= 0) CALL abort_physic('traclmdz_init', 'pb in allocation 6',1) 157 157 vdeptr(:) = 0. 158 158 … … 341 341 342 342 USE dimphy 343 USE infotrac 343 USE infotrac_phy 344 344 USE regr_pr_comb_coefoz_m, ONLY: regr_pr_comb_coefoz 345 345 USE o3_chem_m, ONLY: o3_chem … … 430 430 !================================================================= 431 431 432 CALL q_sat (klon*klev,t_seri,pplay,qsat)432 CALL q_sat_phy(klon*klev,t_seri,pplay,qsat) 433 433 434 434 IF ( id_pcsat /= 0 ) THEN … … 624 624 ! variable trs is written to restart file (restartphy.nc) 625 625 USE dimphy 626 USE infotrac 626 USE infotrac_phy 627 627 628 628 REAL,DIMENSION(klon,nbtr), INTENT(OUT) :: trs_out
Note: See TracChangeset
for help on using the changeset viewer.