Changeset 2239 for LMDZ5/trunk/libf/dynlmdz_phylmd
- Timestamp:
- Mar 23, 2015, 8:27:30 AM (10 years ago)
- Location:
- LMDZ5/trunk/libf/dynlmdz_phylmd
- Files:
-
- 1 added
- 17 moved
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/dynlmdz_phylmd/calfis_loc.F
r2233 r2239 36 36 USE IOPHY 37 37 #endif 38 #ifdef CPP_PARA 38 39 USE parallel_lmdz,ONLY:omp_chunk,using_mpi,jjb_u,jje_u,jjb_v,jje_v 39 40 USE Write_Field 40 41 Use Write_field_p 41 42 USE Times 43 #endif 42 44 USE infotrac, ONLY: nqtot, niadv, tname 43 45 USE control_mod, ONLY: planet_type, nsplit_phys 44 46 47 #ifdef CPP_PARA 45 48 IMPLICIT NONE 46 49 c======================================================================= … … 1186 1189 #endif 1187 1190 ! of #ifdef CPP_PHYS 1188 RETURN 1191 #endif 1192 ! of #ifdef CPP_PARA 1189 1193 END -
LMDZ5/trunk/libf/dynlmdz_phylmd/calfis_p.F
r2233 r2239 33 33 USE IOPHY 34 34 #endif 35 #ifdef CPP_PARA 35 36 USE parallel_lmdz, ONLY : omp_chunk, using_mpi 36 37 USE Write_Field 37 38 Use Write_field_p 38 39 USE Times 40 #endif 39 41 USE infotrac, ONLY: nqtot, niadv, tname 40 42 USE control_mod, ONLY: planet_type, nsplit_phys … … 140 142 REAL,INTENT(OUT) :: pdpsfi(iip1,jjp1) ! tendency on surface pressure (Pa/s) 141 143 144 #ifdef CPP_PARA 142 145 #ifdef CPP_PHYS 143 146 ! Ehouarn: for now calfis_p needs some informations from physics to compile … … 1114 1117 #endif 1115 1118 ! of #ifdef CPP_PHYS 1116 RETURN 1119 #endif 1120 ! of #ifdef CPP_PARA 1117 1121 END -
LMDZ5/trunk/libf/dynlmdz_phylmd/gr_dyn_fi_p.F
r2233 r2239 3 3 ! 4 4 SUBROUTINE gr_dyn_fi_p(nfield,im,jm,ngrid,pdyn,pfi) 5 #ifdef CPP_P HYS5 #ifdef CPP_PARA 6 6 ! Interface with parallel physics, 7 7 USE mod_interface_dyn_phys … … 40 40 c$OMP END DO NOWAIT 41 41 #endif 42 ! of #ifdef CPP_P HYS42 ! of #ifdef CPP_PARA 43 43 RETURN 44 44 END -
LMDZ5/trunk/libf/dynlmdz_phylmd/gr_fi_dyn_p.F
r2233 r2239 3 3 ! 4 4 SUBROUTINE gr_fi_dyn_p(nfield,ngrid,im,jm,pfi,pdyn) 5 #ifdef CPP_P HYS5 #ifdef CPP_PARA 6 6 ! Interface with parallel physics, 7 7 USE mod_interface_dyn_phys … … 52 52 c$OMP END DO NOWAIT 53 53 #endif 54 ! of #ifdef CPP_P HYS54 ! of #ifdef CPP_PARA 55 55 RETURN 56 56 END -
LMDZ5/trunk/libf/dynlmdz_phylmd/iniphysiq.F90
r2233 r2239 148 148 WRITE (lunout, *) ' in the dynamics punjours=', punjours 149 149 WRITE (lunout, *) ' but in the physics RDAY=', rday 150 IF (abs(rday-punjours)>0.01 ) THEN150 IF (abs(rday-punjours)>0.01*punjours) THEN 151 151 ! stop here if the relative difference is more than 1% 152 152 abort_message = 'length of day discrepancy' … … 158 158 WRITE (lunout, *) ' in the dynamics pg=', pg 159 159 WRITE (lunout, *) ' but in the physics RG=', rg 160 IF (abs(rg-pg)>0.01 ) THEN160 IF (abs(rg-pg)>0.01*pg) THEN 161 161 ! stop here if the relative difference is more than 1% 162 162 abort_message = 'gravity discrepancy' … … 168 168 WRITE (lunout, *) ' in the dynamics prad=', prad 169 169 WRITE (lunout, *) ' but in the physics RA=', ra 170 IF (abs(ra-prad)>0.01 ) THEN170 IF (abs(ra-prad)>0.01*prad) THEN 171 171 ! stop here if the relative difference is more than 1% 172 172 abort_message = 'planet radius discrepancy' … … 178 178 WRITE (lunout, *) ' in the dynamics pr=', pr 179 179 WRITE (lunout, *) ' but in the physics RD=', rd 180 IF (abs(rd-pr)>0.01 ) THEN180 IF (abs(rd-pr)>0.01*pr) THEN 181 181 ! stop here if the relative difference is more than 1% 182 182 abort_message = 'reduced gas constant discrepancy' … … 188 188 WRITE (lunout, *) ' in the dynamics pcpp=', pcpp 189 189 WRITE (lunout, *) ' but in the physics RCPD=', rcpd 190 IF (abs(rcpd-pcpp)>0.01 ) THEN190 IF (abs(rcpd-pcpp)>0.01*pcpp) THEN 191 191 ! stop here if the relative difference is more than 1% 192 192 abort_message = 'specific heat discrepancy' -
LMDZ5/trunk/libf/dynlmdz_phylmd/mod_interface_dyn_phys.F90
r2233 r2239 7 7 8 8 9 #ifdef CPP_P HYS9 #ifdef CPP_PARA 10 10 ! Interface with parallel physics, 11 11 CONTAINS … … 55 55 END SUBROUTINE Init_interface_dyn_phys 56 56 #endif 57 ! of #ifdef CPP_P HYS57 ! of #ifdef CPP_PARA 58 58 END MODULE mod_interface_dyn_phys
Note: See TracChangeset
for help on using the changeset viewer.