Changeset 2979 for trunk/LMDZ.MARS/util/simu_MCS.F90
- Timestamp:
- Jun 9, 2023, 3:06:52 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.