Changeset 3717 for trunk/LMDZ.GENERIC
- Timestamp:
- Apr 9, 2025, 11:54:39 AM (3 months ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/LMDZ.GENERIC/changelog.txt ¶
r3716 r3717 2055 2055 Follow-up of reindexing of columns for restartfi files: In 1D one should also 2056 2056 initialize the "ind_cell_glo" array 2057 2058 == 09/04/2025 == MH+SB+JBM+EM 2059 Fixing some outputs: when since "write_output" uses the shape of its argument 2060 (scalar, 1D array for surface, 2D for volume) to infer which type of field to 2061 output, one must provide it the sough array (and not just its first element). -
TabularUnified trunk/LMDZ.GENERIC/libf/phystd/physiq_mod.F90 ¶
r3655 r3717 2668 2668 ! Output aerosols. 2669 2669 if (igcm_co2_ice.ne.0.and.iaero_co2.ne.0) & 2670 call write_output('CO2ice_reff','CO2ice_reff','m',reffrad( 1,1,iaero_co2))2670 call write_output('CO2ice_reff','CO2ice_reff','m',reffrad(:,:,iaero_co2)) 2671 2671 if (igcm_h2o_ice.ne.0.and.iaero_h2o.ne.0) & 2672 2672 call write_output('H2Oice_reff','H2Oice_reff','m',reffrad(:,:,iaero_h2o)) 2673 2673 if (igcm_co2_ice.ne.0.and.iaero_co2.ne.0) & 2674 call write_output('CO2ice_reffcol','CO2ice_reffcol','um kg m^-2',reffcol( 1,iaero_co2))2674 call write_output('CO2ice_reffcol','CO2ice_reffcol','um kg m^-2',reffcol(:,iaero_co2)) 2675 2675 if (igcm_h2o_ice.ne.0.and.iaero_h2o.ne.0) & 2676 call write_output('H2Oice_reffcol','H2Oice_reffcol','um kg m^-2',reffcol( 1,iaero_h2o))2676 call write_output('H2Oice_reffcol','H2Oice_reffcol','um kg m^-2',reffcol(:,iaero_h2o)) 2677 2677 2678 2678 ! Output tracers. … … 2682 2682 call write_output(noms(iq),noms(iq),'kg/kg',zq(:,:,iq)) 2683 2683 call write_output(trim(noms(iq))//'_surf',trim(noms(iq))//'_surf', & 2684 'kg m^-2',qsurf_hist( 1,iq) )2684 'kg m^-2',qsurf_hist(:,iq) ) 2685 2685 call write_output(trim(noms(iq))//'_col',trim(noms(iq))//'_col', & 2686 2686 'kg m^-2',qcol(:,iq) )
Note: See TracChangeset
for help on using the changeset viewer.