Changeset 3072
- Timestamp:
- Oct 5, 2023, 11:58:22 AM (14 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/pem.F90
r3070 r3072 72 72 use mod_phys_lmdz_para, only: is_parallel, is_sequential, is_mpi_root, is_omp_root, is_master 73 73 use planete_h, only: aphelie, periheli, year_day, peri_day, obliquit 74 use comcstfi_h, only: r, mugaz , g74 use comcstfi_h, only: r, mugaz 75 75 use paleoclimate_mod, only: albedo_perenialco2 76 76 #else -
trunk/LMDZ.MARS/changelog.txt
r3071 r3072 4235 4235 Related to commit r3066, correction of a bug to write/read a restart/start in 1D and more adaptations of the code. 4236 4236 4237 == 0 3/10/2023 == AB4237 == 05/10/2023 == AB 4238 4238 Add an example of setup in util/compile to compile utilitary programs on Adastra supercomputer. 4239 4239 Warning: on Adastra, you need to add the netcdf library path to LD_LIBRARY_PATH before running the executable 4240 4240 (export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$NETCDF_DIR/lib) 4241 4242 == 05/10/2023 == JBC 4243 Correction of a bug introduced in commit r3069 when compiling with ifort. -
trunk/LMDZ.MARS/libf/phymars/dyn1d/init_testphys1d_mod.F90
r3069 r3072 451 451 do iq = 1,nq 452 452 read(3,*) header, (qsurf(1,iq,j), j = 1,size(qsurf,3)), (q(1,ilayer,iq), ilayer = 1,nlayer) 453 if (trim(tname(iq)) /= trim(header)) error stop 'Tracer names not compatible for initialization with "'//trim(start1Dname)//'"!' 453 if (trim(tname(iq)) /= trim(header)) then 454 write(*,*) 'Tracer names not compatible for initialization with "'//trim(start1Dname)//'"!' 455 error stop 456 endif 454 457 enddo 455 458 endif
Note: See TracChangeset
for help on using the changeset viewer.