Changeset 2608
- Timestamp:
- Jan 18, 2022, 3:26:51 PM (3 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r2607 r2608 3571 3571 == 18/01/2022 == RV 3572 3572 Open_MP files reading for NIR : callnirco2.and.nircorr.eq.1 3573 3574 == 18/01/2022 == RV 3575 Open_MP files reading for Dustdevil : callddevil = .true. -
trunk/LMDZ.MARS/libf/phymars/dustdevil.F
r1779 r2608 5 5 use surfdat_h, only: z0_default 6 6 USE comcstfi_h 7 USE mod_phys_lmdz_para, only: is_master,bcast 7 8 IMPLICIT NONE 8 9 … … 52 53 real Cd, z1 53 54 save Cd 55 56 !$OMP THREADPRIVATE(Cd) 54 57 55 58 LOGICAL firstcall 56 59 SAVE firstcall 57 60 61 !$OMP THREADPRIVATE(firstcall) 58 62 59 63 REAL devila(ngrid) … … 67 71 DATA q2top/.5/ ! value of q2 at the top of PBL 68 72 DATA seuil/.3/ ! value of minimum dust devil activity for dust lifting 73 74 !$OMP THREADPRIVATE(q2top,seuil) 69 75 70 76 … … 87 93 88 94 ! AS: OK firstcall absolute 95 96 if(is_master) then 89 97 IF (firstcall) THEN 90 98 … … 105 113 106 114 ENDIF 115 endif !ismaster 116 117 CALL bcast(z1) 118 CALL bcast(Cd) 119 CALL bcast(firstcall) 107 120 108 121 c-----------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.