Changeset 2627
- Timestamp:
- Feb 28, 2022, 12:23:15 PM (3 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r2617 r2627 3605 3605 Open_MP : In co2condens_mod : Remove emisref from THREADPRIVATE as it is not a saved variable 3606 3606 3607 == 28/02/2022 == RV 3608 Open_MP :Small OpenMP fixes in conf_phys for reading radia.def with ifort 3609 -
trunk/LMDZ.MARS/libf/phymars/conf_phys.F
r2561 r2627 51 51 & dustscaling_mode 52 52 use aeropacity_mod, only: iddist, topdustref 53 USE mod_phys_lmdz_transfert_para, ONLY: bcast 53 54 IMPLICIT NONE 54 55 include "callkeys.h" … … 78 79 ! -------------------------------------------------------------- 79 80 81 !$OMP MASTER 80 82 ! check that 'callphys.def' file is around 81 83 OPEN(99,file='callphys.def',status='old',form='formatted' 82 84 & ,iostat=ierr) 83 85 CLOSE(99) 86 !$OMP END MASTER 87 call bcast(ierr) 88 ! ierr=0 84 89 85 90 IF(ierr.EQ.0) THEN … … 1108 1113 ! BUT people working hard on the LW may want to read them in 'radia.def' 1109 1114 ! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1110 1115 !$OMP MASTER 1111 1116 OPEN(99,file='radia.def',status='old',form='formatted' 1112 1117 . ,iostat=ierr) … … 1155 1160 end if 1156 1161 CLOSE(99) 1162 !$OMP END MASTER 1163 call bcast(ch1) 1164 call bcast(callemis) 1165 call bcast(iradia) 1166 call bcast(ilwd) 1167 call bcast(ilwn) 1168 call bcast(linear) 1169 call bcast(ncouche) 1170 call bcast(alphan) 1171 call bcast(ilwb) 1172 call bcast(callg2d) 1173 call bcast(semi) 1157 1174 1158 1175 END
Note: See TracChangeset
for help on using the changeset viewer.