Changeset 3213 for trunk/LMDZ.MARS
- Timestamp:
- Feb 12, 2024, 3:05:15 PM (9 months ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/changelog.txt
r3211 r3213 4487 4487 - Update the computation of qsat for frost at high temperatures; following 4488 4488 what is done in the Generic PCM 4489 4490 == 12/02/2024 == JBC 4491 Correction of a bug in "writediagsoil.F90": the case of using the 1D model with parallelization was not anticipated so that the "diagsoil.nc" file was filled with meaningless data. -
trunk/LMDZ.MARS/deftank/launch_1Dchained.sh
r3209 r3213 74 74 ./$exePCM > out_runPCM${iPCM} 2>&1 75 75 if [ ! -f "restartfi.nc" ]; then # Check if run ended abnormally 76 echo "Error: the run PCM $iPCM hascrashed!"76 echo "Error: the run PCM $iPCM crashed!" 77 77 exit 1 78 78 fi … … 104 104 105 105 date 106 echo "The launching script has terminated."106 echo "The launching script ended." -
trunk/LMDZ.MARS/deftank/launch_orb_1Dchained.sh
r3209 r3213 159 159 ./$exePCM > out_runPCM${iPCM} 2>&1 160 160 if [ ! -f "restartfi.nc" ]; then # Check if run ended abnormally 161 echo "Error: the run PCM $iPCM hascrashed!"161 echo "Error: the run PCM $iPCM crashed!" 162 162 exit 1 163 163 fi … … 189 189 190 190 date 191 echo "The launching script has terminated."191 echo "The launching script ended." -
trunk/LMDZ.MARS/libf/phymars/writediagsoil.F90
r2916 r3213 206 206 if (dimpx.eq.3) then ! Case of a 3D variable 207 207 ! A. Recast data along 'dynamics' grid 208 if (klon_glo>1) then ! General case 208 209 #ifdef CPP_PARA 209 210 ! gather field on a "global" (without redundant longitude) array … … 219 220 !$OMP BARRIER 220 221 #else 221 if (klon_glo>1) then ! General case222 222 do l=1,nsoilmx 223 223 ! handle the poles … … 235 235 enddo 236 236 enddo 237 #endif 237 238 else ! 1D model case 238 239 data3_1d(1,1:nsoilmx)=px(1,1:nsoilmx) 239 240 endif 240 #endif241 241 242 242 ! B. Write (append) the variable to the NetCDF file … … 292 292 293 293 ! A. Recast data along 'dynamics' grid 294 if (klon_glo>1) then ! General case 294 295 #ifdef CPP_PARA 295 296 ! gather field on a "global" (without redundant longitude) array … … 306 307 !$OMP BARRIER 307 308 #else 308 if (klon_glo>1) then ! general case309 309 ! handle the poles 310 310 do i=1,nbp_lon+1 … … 320 320 data2(nbp_lon+1,j)=data2(1,j) ! extra (modulo) longitude 321 321 enddo 322 #endif 322 323 else ! 1D model case 323 324 data2_1d=px(1,1) 324 325 endif 325 #endif326 326 327 327 ! B. Write (append) the variable to the NetCDF file
Note: See TracChangeset
for help on using the changeset viewer.