Changeset 1017
- Timestamp:
- Aug 22, 2013, 4:02:07 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 23 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/DOC/chantiers/commit_importants.log
r1010 r1017 1233 1233 a Forward Euler approximation. 1234 1234 - Sponge tendencies are now added within top_bound. 1235 1236 ********************** 1237 **** commit_v1017 **** 1238 ********************** 1239 Ehouarn: Improved cpdet routines in // and additional sponge mode: 1240 - Additionnal sponge mode (trigered with "callsponge" flag), in line with the one used 1241 in the Generic and Martian GCM. This sponge is called whenever there is a dissipation 1242 step. 1243 - Improvement of the // cpdet routines : created routines tpot2t_glo_p and t2tpot_glo_p 1244 which handle fields on the whole dynamics (scaler) grid, which are more efficient than 1245 calling tpot2t_p or t2tpot_p with slabs of data (generated use of intermediate copies 1246 of these chunks of data at every call) 1247 - Turned cpdet.F into a module cpdet_mod.F90 (and correspondingly adapted all routines 1248 in the Venus physics). 1249 -
trunk/LMDZ.COMMON/libf/dyn3d/bilan_dyn.F
r97 r1017 20 20 21 21 USE control_mod, ONLY: planet_type 22 USE cpdet_mod, only: tpot2t 22 23 23 24 IMPLICIT NONE -
trunk/LMDZ.COMMON/libf/dyn3d/calfis.F
r849 r1017 31 31 USE infotrac 32 32 USE control_mod 33 33 USE cpdet_mod, only: t2tpot,tpot2t 34 34 35 35 IMPLICIT NONE -
trunk/LMDZ.COMMON/libf/dyn3d/conf_gcm.F
r1012 r1017 15 15 USE infotrac, ONLY : type_trac 16 16 use assert_m, only: assert 17 use sponge_mod, only: callsponge,mode_sponge,nsponge,tetasponge 17 18 18 19 IMPLICIT NONE … … 361 362 tau_top_bound=1.e-5 362 363 CALL getin('tau_top_bound',tau_top_bound) 364 365 ! the other possible sponge layer (sponge_mod) 366 callsponge=.false. ! default value; don't use the sponge 367 call getin("callsponge",callsponge) 368 ! check that user is not trying to use both sponge models 369 if ((iflag_top_bound.ge.1).and.callsponge) then 370 write(lunout,*)'Bad choice of options:' 371 write(lunout,*)' iflag_top_bound=',iflag_top_bound 372 write(lunout,*)' and callsponge=.true.' 373 write(lunout,*)'But both sponge models should not be', 374 & ' used simultaneously!' 375 stop 376 endif 377 378 ! nsponge: number of atmospheric layers over which the sponge extends 379 nsponge=3 ! default value 380 call getin("nsponge",nsponge) 381 382 ! mode_sponge: (quenching is towards ... over the upper nsponge layers) 383 ! 0: (h=hmean,u=v=0) 384 ! 1: (h=hmean,u=umean,v=0) 385 ! 2: (h=hmean,u=umean,v=vmean)" 386 mode_sponge=2 ! default value 387 call getin("mode_sponge",mode_sponge) 388 389 ! tetasponge: characteristic time scale (seconds) at topmost layer 390 ! (time scale then doubles with decreasing layer index)." 391 tetasponge=50000.0 392 call getin("tetasponge",tetasponge) 363 393 364 394 ! FOR TITAN: tidal forces -
trunk/LMDZ.COMMON/libf/dyn3d/cpdet_mod.F90
r1016 r1017 1 ! ADAPTATION GCM POUR CP(T) 2 c====================================================================== 3 c S. Lebonnois, 10/2010 4 c 5 c Cp doit être calculé par cpdet(t) pour être valable partout 6 c 7 c La fonction d'Exner reste pk = RCPD*(play/pref)**RKAPPA 8 c (RCPD=cpp, RKAPPA=kappa) 9 c 10 c On passe de T a teta (temperature potentielle) par t2tpot(t,teta,pk) 11 c On passe de teta a T par tpot2t(teta,t,pk) 12 c 13 c====================================================================== 1 module cpdet_mod 2 3 implicit none 4 5 ! ADAPTATION OF GCM TO CP(T) 6 !====================================================================== 7 ! S. Lebonnois, 10/2010 8 ! 9 ! Cp must be computed using cpdet(t) to be valid 10 ! 11 ! The Exner function is still pk = RCPD*(play/pref)**RKAPPA 12 ! (RCPD=cpp, RKAPPA=kappa) 13 ! 14 ! One goes from T to teta (potential temperature) using t2tpot(t,teta,pk) 15 ! One goes from teta to T using tpot2t(teta,t,pk) 16 ! 17 !====================================================================== 18 19 contains 14 20 15 21 SUBROUTINE ini_cpdet … … 17 23 USE control_mod, ONLY: planet_type 18 24 IMPLICIT none 19 c======================================================================20 c Initialisation de nu_venus ett0_venus21 c======================================================================25 !====================================================================== 26 ! Initialization of nu_venus and t0_venus 27 !====================================================================== 22 28 23 29 ! for cpp, nu_venus and t0_venus: … … 33 39 34 40 return 35 end 41 end subroutine ini_cpdet 36 42 37 c======================================================================38 c======================================================================43 !====================================================================== 44 !====================================================================== 39 45 40 46 FUNCTION cpdet(t) … … 46 52 #include "comconst.h" 47 53 48 real cpdet,t 54 real,intent(in) :: t 55 real cpdet 49 56 50 57 if (planet_type.eq."venus") then … … 55 62 56 63 return 57 end 64 end function cpdet 58 65 59 c======================================================================60 c======================================================================66 !====================================================================== 67 !====================================================================== 61 68 62 69 SUBROUTINE t2tpot(npoints, yt, yteta, ypk) 63 c======================================================================64 cArguments:65 c 66 cyt --------input-R- Temperature67 cyteta-------output-R- Temperature potentielle68 cypk --------input-R- Fonction d'Exner: RCPD*(pplay/pref)**RKAPPA69 c 70 c======================================================================70 !====================================================================== 71 ! Arguments: 72 ! 73 ! yt --------input-R- Temperature 74 ! yteta-------output-R- Temperature potentielle 75 ! ypk --------input-R- Fonction d'Exner: RCPD*(pplay/pref)**RKAPPA 76 ! 77 !====================================================================== 71 78 72 79 USE control_mod, ONLY: planet_type … … 76 83 #include "comconst.h" 77 84 78 integer npoints 79 REAL yt(npoints), yteta(npoints), ypk(npoints) 85 integer,intent(in) :: npoints 86 REAL,intent(in) :: yt(npoints), ypk(npoints) 87 REAL,intent(out) :: yteta(npoints) 80 88 81 89 if (planet_type.eq."venus") then … … 88 96 89 97 return 90 end 98 end subroutine t2tpot 91 99 92 c======================================================================93 c======================================================================100 !====================================================================== 101 !====================================================================== 94 102 95 103 SUBROUTINE tpot2t(npoints,yteta, yt, ypk) 96 c======================================================================97 cArguments:98 c 99 cyteta--------input-R- Temperature potentielle100 cyt -------output-R- Temperature101 cypk --------input-R- Fonction d'Exner: RCPD*(pplay/pref)**RKAPPA102 c 103 c======================================================================104 !====================================================================== 105 ! Arguments: 106 ! 107 ! yteta--------input-R- Temperature potentielle 108 ! yt -------output-R- Temperature 109 ! ypk --------input-R- Fonction d'Exner: RCPD*(pplay/pref)**RKAPPA 110 ! 111 !====================================================================== 104 112 105 113 USE control_mod, ONLY: planet_type … … 109 117 #include "comconst.h" 110 118 111 integer npoints 112 REAL yt(npoints), yteta(npoints), ypk(npoints) 119 integer,intent(in) :: npoints 120 REAL,intent(in) :: yteta(npoints), ypk(npoints) 121 REAL,intent(out) :: yt(npoints) 113 122 114 123 if (planet_type.eq."venus") then … … 121 130 122 131 return 123 end 132 end subroutine tpot2t 124 133 125 c====================================================================== 126 c====================================================================== 127 c 128 c ATTENTION 129 c 130 c Si un jour on a besoin, il faudra coder les routines 131 c dt2dtpot / dtpto2dt 132 c 133 c====================================================================== 134 c====================================================================== 134 !====================================================================== 135 !====================================================================== 136 ! 137 ! ATTENTION 138 ! 139 ! Si un jour on a besoin, il faudra coder les routines 140 ! dt2dtpot / dtpto2dt 141 ! 142 !====================================================================== 143 !====================================================================== 144 end module cpdet_mod -
trunk/LMDZ.COMMON/libf/dyn3d/gcm.F
r979 r1017 16 16 USE infotrac 17 17 USE control_mod 18 use cpdet_mod, only: ini_cpdet 18 19 19 20 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -
trunk/LMDZ.COMMON/libf/dyn3d/leapfrog.F
r1012 r1017 16 16 USE write_field 17 17 USE control_mod 18 use cpdet_mod, only: cpdet,tpot2t,t2tpot 19 use sponge_mod, only: callsponge,mode_sponge,sponge 18 20 IMPLICIT NONE 19 21 … … 197 199 ! for CP(T) 198 200 real :: dtec 199 real,external :: cpdet200 201 real :: ztetaec(ip1jmp1,llm) 201 202 202 203 c dummy: sinon cette routine n'est jamais compilee... 203 204 if(1.eq.0) then 205 #ifdef CPP_PHYS 204 206 CALL init_phys_lmdz(iim,jjp1,llm,1,(/(jjm-1)*iim+2/)) 207 #endif 205 208 endif 206 209 … … 562 565 IF(apdiss) THEN 563 566 567 ! sponge layer 568 if (callsponge) then 569 CALL sponge(ucov,vcov,teta,ps,dtdiss,mode_sponge) 570 endif 564 571 565 572 c calcul de l'energie cinetique avant dissipation -
trunk/LMDZ.COMMON/libf/dyn3d/vlspltqs.F
r109 r1017 22 22 c pk exner au milieu des couches necessaire pour calculer Qsat 23 23 c -------------------------------------------------------------------- 24 use cpdet_mod, only: tpot2t 24 25 IMPLICIT NONE 25 26 c -
trunk/LMDZ.COMMON/libf/dyn3dpar/calfis_p.F
r892 r1017 39 39 USE infotrac 40 40 USE control_mod 41 USE cpdet_mod, only: tpot2t_p, t2tpot_p 41 42 42 43 IMPLICIT NONE -
trunk/LMDZ.COMMON/libf/dyn3dpar/conf_gcm.F
r1012 r1017 19 19 USE infotrac, ONLY : type_trac 20 20 use assert_m, only: assert 21 use sponge_mod_p, only: callsponge,mode_sponge,nsponge,tetasponge 21 22 IMPLICIT NONE 22 23 c----------------------------------------------------------------------- … … 388 389 tau_top_bound=1.e-5 389 390 CALL getin('tau_top_bound',tau_top_bound) 391 392 ! the other possible sponge layer (sponge_mod) 393 callsponge=.false. ! default value; don't use the sponge 394 call getin("callsponge",callsponge) 395 ! check that user is not trying to use both sponge models 396 if ((iflag_top_bound.ge.1).and.callsponge) then 397 write(lunout,*)'Bad choice of options:' 398 write(lunout,*)' iflag_top_bound=',iflag_top_bound 399 write(lunout,*)' and callsponge=.true.' 400 write(lunout,*)'But both sponge models should not be', 401 & ' used simultaneously!' 402 stop 403 endif 404 405 ! nsponge: number of atmospheric layers over which the sponge extends 406 nsponge=3 ! default value 407 call getin("nsponge",nsponge) 408 409 ! mode_sponge: (quenching is towards ... over the upper nsponge layers) 410 ! 0: (h=hmean,u=v=0) 411 ! 1: (h=hmean,u=umean,v=0) 412 ! 2: (h=hmean,u=umean,v=vmean)" 413 mode_sponge=2 ! default value 414 call getin("mode_sponge",mode_sponge) 415 416 ! tetasponge: characteristic time scale (seconds) at topmost layer 417 ! (time scale then doubles with decreasing layer index)." 418 tetasponge=50000.0 419 call getin("tetasponge",tetasponge) 390 420 391 421 ! FOR TITAN: tidal forces -
trunk/LMDZ.COMMON/libf/dyn3dpar/cpdet_mod.F90
r1016 r1017 1 ! ADAPTATION GCM POUR CP(T) 2 c====================================================================== 3 c S. Lebonnois, 10/2010 4 c 5 c Cp doit être calculé par cpdet(t) pour être valable partout 6 c 7 c La fonction d'Exner reste pk = RCPD*(play/pref)**RKAPPA 8 c (RCPD=cpp, RKAPPA=kappa) 9 c 10 c On passe de T a teta (temperature potentielle) par t2tpot(t,teta,pk) 11 c On passe de teta a T par tpot2t(teta,t,pk) 12 c 13 c====================================================================== 1 module cpdet_mod 2 3 implicit none 4 5 ! ADAPTATION OF GCM TO CP(T) 6 !====================================================================== 7 ! S. Lebonnois, 10/2010 8 ! 9 ! Cp must be computed using cpdet(t) to be valid 10 ! 11 ! The Exner function is still pk = RCPD*(play/pref)**RKAPPA 12 ! (RCPD=cpp, RKAPPA=kappa) 13 ! 14 ! One goes from T to teta (potential temperature) using t2tpot(t,teta,pk) 15 ! One goes from teta to T using tpot2t(teta,t,pk) 16 ! 17 !====================================================================== 18 19 contains 14 20 15 21 SUBROUTINE ini_cpdet … … 17 23 USE control_mod, ONLY: planet_type 18 24 IMPLICIT none 19 c======================================================================20 c Initialisation de nu_venus ett0_venus21 c======================================================================25 !====================================================================== 26 ! Initialization of nu_venus and t0_venus 27 !====================================================================== 22 28 23 29 ! for cpp, nu_venus and t0_venus: … … 33 39 34 40 return 35 end 36 37 c======================================================================38 c======================================================================41 end subroutine ini_cpdet 42 43 !====================================================================== 44 !====================================================================== 39 45 40 46 FUNCTION cpdet(t) … … 46 52 #include "comconst.h" 47 53 48 real cpdet,t 54 real,intent(in) :: t 55 real cpdet 49 56 50 57 if (planet_type.eq."venus") then … … 55 62 56 63 return 57 end 58 59 c======================================================================60 c======================================================================64 end function cpdet 65 66 !====================================================================== 67 !====================================================================== 61 68 62 69 SUBROUTINE t2tpot(npoints, yt, yteta, ypk) 63 c======================================================================64 cArguments:65 c 66 cyt --------input-R- Temperature67 cyteta-------output-R- Temperature potentielle68 cypk --------input-R- Fonction d'Exner: RCPD*(pplay/pref)**RKAPPA69 c 70 c======================================================================70 !====================================================================== 71 ! Arguments: 72 ! 73 ! yt --------input-R- Temperature 74 ! yteta-------output-R- Temperature potentielle 75 ! ypk --------input-R- Fonction d'Exner: RCPD*(pplay/pref)**RKAPPA 76 ! 77 !====================================================================== 71 78 72 79 USE control_mod, ONLY: planet_type … … 76 83 #include "comconst.h" 77 84 78 integer npoints 79 REAL yt(npoints), yteta(npoints), ypk(npoints) 85 integer,intent(in) :: npoints 86 REAL,intent(in) :: yt(npoints), ypk(npoints) 87 REAL,intent(out) :: yteta(npoints) 80 88 81 89 if (planet_type.eq."venus") then … … 88 96 89 97 return 90 end 91 92 c======================================================================93 c======================================================================98 end subroutine t2tpot 99 100 !====================================================================== 101 !====================================================================== 94 102 95 103 SUBROUTINE t2tpot_p(nlon,nlev, yt, yteta, ypk) 96 ! Parallel version of t2tpot 97 USE parallel 104 ! Parallel version of t2tpot, for an arbitrary number of columns 98 105 USE control_mod, only : planet_type 99 106 IMPLICIT none … … 110 117 111 118 if (planet_type.eq."venus") then 119 !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) 112 120 do l=1,nlev 113 121 yteta(:,l)=yt(:,l)**nu_venus & … … 116 124 yteta(:,l)=yteta(:,l)**(1./nu_venus) 117 125 enddo 118 else 126 !$OMP END DO 127 else 128 !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) 119 129 do l=1,nlev 120 130 yteta(:,l)=yt(:,l)*cpp/ypk(:,l) 121 131 enddo 132 !$OMP END DO 122 133 endif ! of if (planet_type.eq."venus") 123 134 124 END 125 126 c====================================================================== 135 end subroutine t2tpot_p 136 137 !====================================================================== 138 !====================================================================== 139 140 SUBROUTINE t2tpot_glo_p(yt, yteta, ypk) 141 ! Parallel version of t2tpot, over the full dynamics (scalar) grid 142 ! (more efficient than multiple calls to t2tpot_p() with slices of data) 143 USE parallel, only : jj_begin,jj_end 144 USE control_mod, only : planet_type 145 IMPLICIT none 146 ! for iip1, jjp1 and llm 147 #include "dimensions.h" 148 #include "paramet.h" 149 ! for cpp, nu_venus and t0_venus: 150 #include "comconst.h" 151 152 real,intent(in) :: yt(iip1,jjp1,llm) 153 real,intent(out) :: yteta(iip1,jjp1,llm) 154 real,intent(in) :: ypk(iip1,jjp1,llm) 155 ! local variable: 156 integer :: j,l 157 integer :: jjb,jje 158 159 jjb=jj_begin 160 jje=jj_end 161 162 if (planet_type.eq."venus") then 163 !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) 164 do l=1,llm 165 yteta(:,jjb:jje,l)=yt(:,jjb:jje,l)**nu_venus & 166 & -nu_venus*t0_venus**nu_venus* & 167 & log(ypk(:,jjb:jje,l)/cpp) 168 yteta(:,jjb:jje,l)=yteta(:,jjb:jje,l)**(1./nu_venus) 169 enddo 170 !$OMP END DO 171 else 172 !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) 173 do l=1,llm 174 yteta(:,jjb:jje,l)=yt(:,jjb:jje,l)*cpp/ypk(:,jjb:jje,l) 175 enddo 176 !$OMP END DO 177 endif ! of if (planet_type.eq."venus") 178 179 end subroutine t2tpot_glo_p 180 181 !====================================================================== 127 182 128 183 SUBROUTINE tpot2t(npoints,yteta, yt, ypk) 129 c======================================================================130 cArguments:131 c 132 cyteta--------input-R- Temperature potentielle133 cyt -------output-R- Temperature134 cypk --------input-R- Fonction d'Exner: RCPD*(pplay/pref)**RKAPPA135 c 136 c======================================================================184 !====================================================================== 185 ! Arguments: 186 ! 187 ! yteta--------input-R- Temperature potentielle 188 ! yt -------output-R- Temperature 189 ! ypk --------input-R- Fonction d'Exner: RCPD*(pplay/pref)**RKAPPA 190 ! 191 !====================================================================== 137 192 138 193 USE control_mod, ONLY: planet_type … … 142 197 #include "comconst.h" 143 198 144 integer npoints 145 REAL yt(npoints), yteta(npoints), ypk(npoints) 199 integer,intent(in) :: npoints 200 REAL,intent(in) :: yteta(npoints), ypk(npoints) 201 REAL,intent(out) :: yt(npoints) 146 202 147 203 if (planet_type.eq."venus") then … … 154 210 155 211 return 156 end 157 158 c====================================================================== 159 c====================================================================== 212 end subroutine tpot2t 213 214 !====================================================================== 215 !====================================================================== 216 160 217 SUBROUTINE tpot2t_p(nlon,nlev,yteta,yt,ypk) 161 ! Parallel version of tpot2t 162 USE parallel 218 ! Parallel version of tpot2t, for an arbitrary number of columns 163 219 USE control_mod, only : planet_type 164 220 IMPLICIT none … … 175 231 176 232 if (planet_type.eq."venus") then 233 !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) 177 234 do l=1,nlev 178 235 yt(:,l)=yteta(:,l)**nu_venus & … … 181 238 yt(:,l)=yt(:,l)**(1./nu_venus) 182 239 enddo 183 else 240 !$OMP END DO 241 else 242 !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) 184 243 do l=1,nlev 185 244 yt(:,l)=yteta(:,l)*ypk(:,l)/cpp 186 245 enddo 246 !$OMP END DO 187 247 endif ! of if (planet_type.eq."venus") 188 END 189 190 c====================================================================== 191 c====================================================================== 192 c 193 c ATTENTION 194 c 195 c Si un jour on a besoin, il faudra coder les routines 196 c dt2dtpot / dtpto2dt 197 c 198 c====================================================================== 199 c====================================================================== 248 end subroutine tpot2t_p 249 250 !====================================================================== 251 !====================================================================== 252 253 SUBROUTINE tpot2t_glo_p(yteta,yt,ypk) 254 ! Parallel version of tpot2t, over the full dynamics (scalar) grid 255 ! (more efficient than multiple calls to tpot2t_p() with slices of data) 256 USE parallel, only : jj_begin,jj_end 257 USE control_mod, only : planet_type 258 IMPLICIT none 259 ! for iip1, jjp1 and llm 260 #include "dimensions.h" 261 #include "paramet.h" 262 ! for cpp, nu_venus and t0_venus: 263 #include "comconst.h" 264 265 real,intent(out) :: yt(iip1,jjp1,llm) 266 real,intent(in) :: yteta(iip1,jjp1,llm) 267 real,intent(in) :: ypk(iip1,jjp1,llm) 268 ! local variable: 269 integer :: j,l 270 integer :: jjb,jje 271 272 jjb=jj_begin 273 jje=jj_end 274 275 if (planet_type.eq."venus") then 276 !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) 277 do l=1,llm 278 yt(:,jjb:jje,l)=yteta(:,jjb:jje,l)**nu_venus & 279 & +nu_venus*t0_venus**nu_venus* & 280 & log(ypk(:,jjb:jje,l)/cpp) 281 yt(:,jjb:jje,l)=yt(:,jjb:jje,l)**(1./nu_venus) 282 enddo 283 !$OMP END DO 284 else 285 !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) 286 do l=1,llm 287 yt(:,jjb:jje,l)=yteta(:,jjb:jje,l)*ypk(:,jjb:jje,l)/cpp 288 enddo 289 !$OMP END DO 290 endif ! of if (planet_type.eq."venus") 291 end subroutine tpot2t_glo_p 292 293 !====================================================================== 294 !====================================================================== 295 ! 296 ! ATTENTION 297 ! 298 ! Si un jour on a besoin, il faudra coder les routines 299 ! dt2dtpot / dtpto2dt 300 ! 301 !====================================================================== 302 !====================================================================== 303 end module cpdet_mod -
trunk/LMDZ.COMMON/libf/dyn3dpar/gcm.F
r979 r1017 19 19 USE filtreg_mod 20 20 USE control_mod 21 use cpdet_mod, only: ini_cpdet 21 22 22 23 ! Ehouarn: the following are needed with (parallel) physics: -
trunk/LMDZ.COMMON/libf/dyn3dpar/leapfrog_p.F
r1012 r1017 21 21 USE getparam 22 22 USE control_mod 23 use cpdet_mod, only: cpdet,tpot2t_glo_p,t2tpot_glo_p 24 use sponge_mod_p, only: callsponge,mode_sponge,sponge_p 23 25 24 26 IMPLICIT NONE … … 186 188 ! for CP(T) -- Aymeric 187 189 real :: dtec 188 real,external :: cpdet189 190 real,save :: ztetaec(ip1jmp1,llm) !!SAVE ??? 190 191 … … 211 212 c dummy: sinon cette routine n'est jamais compilee... 212 213 if(1.eq.0) then 214 #ifdef CPP_PHYS 213 215 CALL init_phys_lmdz(iim,jjp1,llm,1,(/(jjm-1)*iim+2/)) 216 #endif 214 217 endif 215 218 … … 550 553 c -------------------------------- 551 554 ! ADAPTATION GCM POUR CP(T) 555 call tpot2t_glo_p(teta,temp,pk) 552 556 ijb=ij_begin 553 557 ije=ij_end 554 call tpot2t_p(ije-ijb+1,llm,teta(ijb:ije,:),temp(ijb:ije,:),555 & pk(ijb:ije,:))556 558 !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) 557 559 do l=1,llm … … 1158 1160 1159 1161 IF(apdiss) THEN 1160 cc$OMP PARALLEL DEFAULT(SHARED) 1161 cc$OMP+ PRIVATE(ijb,ije,tppn,tpn,tpps,tps) 1162 1162 1163 c$OMP MASTER 1163 1164 call suspend_timer(timer_caldyn) … … 1169 1170 call VTb(VThallo) 1170 1171 c$OMP END MASTER 1172 1173 ! sponge layer 1174 if (callsponge) then 1175 call Register_SwapFieldHallo(ps,ps,ip1jmp1,1, 1176 & jj_Nb_dissip,1,1,Request_dissip) 1177 call Register_Hallo(ps,ip1jm,1,1,1,1,1,Request_Dissip) 1178 call SendRequest(Request_Dissip) 1179 c$OMP BARRIER 1180 call WaitRequest(Request_Dissip) 1181 c$OMP BARRIER 1182 c$OMP MASTER 1183 call VTe(VThallo) 1184 call VTb(VThallo) 1185 c$OMP END MASTER 1186 c$OMP BARRIER 1187 CALL sponge_p(ucov,vcov,teta,ps,dtdiss,mode_sponge) 1188 endif 1189 1171 1190 1172 1191 c$OMP BARRIER … … 1205 1224 c dissipation 1206 1225 ! ADAPTATION GCM POUR CP(T) 1207 ijb=ij_begin 1208 ije=ij_end 1209 call tpot2t_p(ije-ijb+1,llm,teta(ijb:ije,:),temp(ijb:ije,:), 1210 & pk(ijb:ije,:)) 1226 call tpot2t_glo_p(teta,temp,pk) 1211 1227 1212 1228 ! CALL FTRACE_REGION_BEGIN("dissip") … … 1266 1282 enddo 1267 1283 c$OMP END DO 1268 call t2tpot_p(ije-ijb+1,llm,temp(ijb:ije,:),ztetaec(ijb:ije,:), 1269 & pk(ijb:ije,:)) 1284 ! call t2tpot_p(ije-ijb+1,llm,temp(ijb:ije,:),ztetaec(ijb:ije,:), 1285 ! & pk(ijb:ije,:)) 1286 call t2tpot_glo_p(temp,ztetaec,pk) 1270 1287 c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) 1271 1288 do l=1,llm … … 1576 1593 1577 1594 ! ADAPTATION GCM POUR CP(T) 1595 call tpot2t_glo_p(teta,temp,pk) 1578 1596 ijb=ij_begin 1579 1597 ije=ij_end 1580 call tpot2t_p(ije-ijb+1,llm,teta(ijb:ije,:),temp(ijb:ije,:),1581 & pk(ijb:ije,:))1582 1598 !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) 1583 1599 do l=1,llm … … 1801 1817 1802 1818 ! ADAPTATION GCM POUR CP(T) 1819 call tpot2t_glo_p(teta,temp,pk) 1803 1820 ijb=ij_begin 1804 1821 ije=ij_end 1805 call tpot2t_p(ije-ijb+1,llm,teta(ijb:ije,:),temp(ijb:ije,:),1806 & pk(ijb:ije,:))1807 1822 !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) 1808 1823 do l=1,llm -
trunk/LMDZ.COMMON/libf/dyn3dpar/vlspltqs_p.F
r109 r1017 25 25 USE mod_hallo 26 26 USE VAMPIR 27 use cpdet_mod, only: tpot2t_glo_p 27 28 IMPLICIT NONE 28 29 … … 97 98 ! ADAPTATION GCM POUR CP(T) 98 99 ! probablement a revoir... 99 call tpot2t_p(ip1jmp1,llm,teta,tempe,pk)100 100 ! call tpot2t_p(ip1jmp1,llm,teta,tempe,pk) 101 call tpot2t_glo_p(teta,tempe,pk) 101 102 102 103 call SetTag(MyRequest1,100) -
trunk/LMDZ.VENUS/libf/phyvenus/YOMCST.h
r101 r1017 20 20 REAL RKAPPA,RETV 21 21 ! ADAPTATION GCM POUR CP(T) 22 real cpdet23 external cpdet22 ! real cpdet 23 ! external cpdet 24 24 ! A1.5,6 Thermodynamic liquid,solid phases 25 25 REAL RCW,RCS -
trunk/LMDZ.VENUS/libf/phyvenus/ajsec.F
r101 r1017 7 7 8 8 use dimphy 9 use cpdet_mod, only: t2tpot, tpot2t 9 10 IMPLICIT none 10 11 c====================================================================== -
trunk/LMDZ.VENUS/libf/phyvenus/clmain.F
r892 r1017 35 35 USE interface_surf 36 36 use dimphy 37 use cpdet_mod, only: t2tpot 37 38 IMPLICIT none 38 39 c====================================================================== … … 490 491 USE interface_surf 491 492 use dimphy 493 use cpdet_mod, only: t2tpot,tpot2t,cpdet 492 494 493 495 IMPLICIT none … … 898 900 899 901 use dimphy 902 use cpdet_mod, only: cpdet,t2tpot 900 903 IMPLICIT none 901 904 c====================================================================== … … 1181 1184 1182 1185 use dimphy 1186 use cpdet_mod, only: cpdet 1183 1187 IMPLICIT none 1184 1188 c====================================================================== -
trunk/LMDZ.VENUS/libf/phyvenus/comcstfi.h
r892 r1017 5 5 6 6 REAL rad,g,r,cpp,rcp,dtphys,daysec,mugaz,omeg 7 real cpdet8 external cpdet9 7 10 8 !----------------------------------------------------------------------- -
trunk/LMDZ.VENUS/libf/phyvenus/diagphy.F
r101 r1017 209 209 210 210 use dimphy 211 use cpdet_mod, only: cpdet 211 212 IMPLICIT NONE 212 213 C -
trunk/LMDZ.VENUS/libf/phyvenus/interface_surf.F90
r973 r1017 46 46 47 47 use write_field_phy 48 use cpdet_mod, only: cpdet 48 49 49 50 IMPLICIT none … … 196 197 197 198 use write_field_phy 199 use cpdet_mod, only: t2tpot, tpot2t 198 200 199 201 IMPLICIT none -
trunk/LMDZ.VENUS/libf/phyvenus/lw_venus_ve.F
r953 r1017 6 6 7 7 use dimphy 8 use cpdet_mod, only: cpdet 8 9 IMPLICIT none 9 10 -
trunk/LMDZ.VENUS/libf/phyvenus/lwi.F
r953 r1017 2 2 3 3 use dimphy 4 use cpdet_mod, only: cpdet 4 5 implicit none 5 6 -
trunk/LMDZ.VENUS/libf/phyvenus/physiq.F
r973 r1017 64 64 USE write_field_phy 65 65 USE iophy 66 use cpdet_mod, only: cpdet, t2tpot 66 67 IMPLICIT none 67 68 c====================================================================== -
trunk/LMDZ.VENUS/libf/phyvenus/rcm1d.F
r901 r1017 1 1 #include "../dyn3d/cpdet_mod.F90" 2 !*********************************************************************** 2 3 PROGRAM rcm1d 3 4 … … 6 7 use comgeomphy 7 8 USE phys_state_var_mod 9 use cpdet_mod, only: ini_cpdet 8 10 IMPLICIT NONE 9 11 … … 466 468 #include "../dyn3d/abort_gcm.F" 467 469 #include "../dyn3d/dump2d.F" 468 #include "../dyn3d/cpdet.F" 469 470 -
trunk/LMDZ.VENUS/libf/phyvenus/sw_venus_dc.F
r892 r1017 5 5 6 6 use dimphy 7 use cpdet_mod, only: cpdet 7 8 IMPLICIT none 8 9
Note: See TracChangeset
for help on using the changeset viewer.