Changeset 1750 for LMDZ5/branches/testing/libf/dyn3dpar
- Timestamp:
- Apr 25, 2013, 5:27:27 PM (12 years ago)
- Location:
- LMDZ5/branches/testing
- Files:
-
- 1 deleted
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/branches/testing
- Property svn:mergeinfo changed
/LMDZ5/trunk merged: 1711-1716,1718,1720-1725,1727-1729,1732-1742,1744-1745
- Property svn:mergeinfo changed
-
LMDZ5/branches/testing/libf/dyn3dpar/conf_gcm.F
r1707 r1750 61 61 LOGICAL fxyhypbb, ysinuss 62 62 INTEGER i 63 63 character(len=*),parameter :: modname="conf_gcm" 64 character (len=80) :: abort_message 65 #ifdef CPP_OMP 66 integer,external :: OMP_GET_NUM_THREADS 67 #endif 64 68 c 65 69 c ------------------------------------------------------------------- … … 90 94 c initialisations: 91 95 c ---------------- 92 adjust=.false.93 call getin('adjust',adjust)94 95 itaumax=096 call getin('itaumax',itaumax);97 if (itaumax<=0) itaumax=HUGE(itaumax)98 96 99 97 !Config Key = lunout … … 108 106 & STATUS='unknown',FORM='formatted') 109 107 ENDIF 108 109 adjust=.false. 110 call getin('adjust',adjust) 111 112 #ifdef CPP_OMP 113 ! adjust=y not implemented in case of OpenMP threads... 114 !$OMP PARALLEL 115 if ((OMP_GET_NUM_THREADS()>1).and.adjust) then 116 write(lunout,*)'conf_gcm: Error, adjust should be set to n' 117 &,' when running with OpenMP threads' 118 abort_message = 'Wrong value for adjust' 119 call abort_gcm(modname,abort_message,1) 120 endif 121 !$OMP END PARALLEL 122 #endif 123 124 itaumax=0 125 call getin('itaumax',itaumax); 126 if (itaumax<=0) itaumax=HUGE(itaumax) 110 127 111 128 !Config Key = prt_level -
LMDZ5/branches/testing/libf/dyn3dpar/guide_p_mod.F90
r1665 r1750 11 11 USE getparam 12 12 USE Write_Field_p 13 use netcdf, only: nf90_nowrite, nf90_open, nf90_inq_varid, nf90_close 13 USE netcdf, ONLY: nf90_nowrite, nf90_open, nf90_inq_varid, nf90_close 14 USE pres2lev_mod 14 15 15 16 IMPLICIT NONE
Note: See TracChangeset
for help on using the changeset viewer.