Changeset 2979
- Timestamp:
- Jun 9, 2023, 3:06:52 PM (20 months ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/changelog.txt
r2976 r2979 4065 4065 Also updated "deftank/field_def_physics_mars.xml" to keep up with recently added 4066 4066 variables 4067 4068 == 09/06/2023 == AB 4069 Adapt simu_MCS.F90 so that it also recognizes new dust opacity names from aeroptical (since r2817 : "opa_dust" instead of "opadust") 4070 (retrocompatible with old names as well) -
trunk/LMDZ.MARS/util/simu_MCS.F90
r2558 r2979 1573 1573 status=nf90_inq_varid(outfid,trim(out_dztauname),out_dztauid) 1574 1574 if (status.ne.nf90_noerr) then 1575 ! if no "d/ndust" in outfile, look for "d/nopa dust"1576 out_dztauname = out_dztauname(1:1)//"opa dust"1575 ! if no "d/ndust" in outfile, look for "d/nopa_dust" 1576 out_dztauname = out_dztauname(1:1)//"opa_dust" 1577 1577 status=nf90_inq_varid(outfid,trim(out_dztauname),out_dztauid) 1578 1578 if (status.ne.nf90_noerr) then 1579 tau_ratio_ok = .false. 1580 write(*,*)"No dust opacity in the outfile, we'll pass the computation of the CDOD ratio" 1579 ! if no "d/ndust" nor d/nopa_dust" in outfile, look for "d/nopadust" (old variable name from aeroptical, before r2817) 1580 out_dztauname = out_dztauname(1:1)//"opadust" 1581 status=nf90_inq_varid(outfid,trim(out_dztauname),out_dztauid) 1582 if (status.ne.nf90_noerr) then 1583 tau_ratio_ok = .false. 1584 write(*,*)"No dust opacity in the outfile, we skip the computation of the CDOD ratio" 1585 endif 1581 1586 endif 1582 1587 endif … … 1588 1593 if (status.ne.nf90_noerr) then 1589 1594 tau_ratio_ok = .false. 1590 write(*,*)"No temperature in the o utfile, we'll passthe computation of the CDOD ratio"1595 write(*,*)"No temperature in the obsfile, we skip the computation of the CDOD ratio" 1591 1596 endif 1592 1597 endif
Note: See TracChangeset
for help on using the changeset viewer.