Changeset 1403 for LMDZ4/trunk/libf/phylmd/phys_state_var_mod.F90
- Timestamp:
- Jul 1, 2010, 11:02:53 AM (15 years ago)
- Location:
- LMDZ4/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/trunk
- Property svn:mergeinfo changed
-
LMDZ4/trunk/libf/phylmd/phys_state_var_mod.F90
r1398 r1403 1 ! 2 ! $Id$ 3 ! 1 4 MODULE phys_state_var_mod 2 5 ! Variables sauvegardees pour le startphy.nc … … 201 204 ! wake_Cstar : vitesse d'etalement de la poche 202 205 ! wake_s : fraction surfacique occupee par la poche froide 206 ! wake_pe : wake potential energy - WAPE 203 207 ! wake_fip : Gust Front Impinging power - ALP 204 208 ! dt_wake, dq_wake: LS tendencies due to wake … … 211 215 REAL,ALLOCATABLE,SAVE :: wake_s(:) 212 216 !$OMP THREADPRIVATE(wake_s) 217 REAL,ALLOCATABLE,SAVE :: wake_pe(:) 218 !$OMP THREADPRIVATE(wake_pe) 213 219 REAL,ALLOCATABLE,SAVE :: wake_fip(:) 214 220 !$OMP THREADPRIVATE(wake_fip) … … 321 327 SUBROUTINE phys_state_var_init(read_climoz) 322 328 use dimphy 329 USE control_mod 323 330 use aero_mod 324 331 IMPLICIT NONE … … 333 340 334 341 #include "indicesol.h" 335 #include "control.h"336 342 ALLOCATE(rlat(klon), rlon(klon)) 337 343 ALLOCATE(pctsrf(klon,nbsrf)) … … 416 422 ALLOCATE(wght_th(klon,klev)) 417 423 ALLOCATE(wake_deltat(klon,klev), wake_deltaq(klon,klev)) 418 ALLOCATE(wake_Cstar(klon), wake_s(klon), wake_fip(klon)) 424 ALLOCATE(wake_Cstar(klon), wake_s(klon)) 425 ALLOCATE(wake_pe(klon), wake_fip(klon)) 419 426 ALLOCATE(dt_wake(klon,klev), dq_wake(klon,klev)) 420 427 ALLOCATE(pfrac_impa(klon,klev), pfrac_nucl(klon,klev)) … … 457 464 SUBROUTINE phys_state_var_end 458 465 use dimphy 466 use control_mod 459 467 IMPLICIT NONE 460 468 #include "indicesol.h" 461 #include "control.h"462 469 463 470 deallocate(rlat, rlon, pctsrf, ftsol, falb1, falb2) … … 516 523 deallocate(lalim_conv, wght_th) 517 524 deallocate(wake_deltat, wake_deltaq) 518 deallocate(wake_Cstar, wake_s, wake_ fip)525 deallocate(wake_Cstar, wake_s, wake_pe, wake_fip) 519 526 deallocate(dt_wake, dq_wake) 520 527 deallocate(pfrac_impa, pfrac_nucl)
Note: See TracChangeset
for help on using the changeset viewer.