Changeset 11762
- Timestamp:
- 2019-10-22T15:42:21+02:00 (5 years ago)
- Location:
- NEMO/branches/UKMO/NEMO_4.0_fix_cpl_oce_only
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/branches/UKMO/NEMO_4.0_fix_cpl_oce_only/cfgs/SHARED/field_def_nemo-ice.xml
r11081 r11762 156 156 <field id="hfxcndtop" long_name="Net conductive heat flux at the ice surface (neg = ice cooling)" standard_name="conductive_heat_flux_at_sea_ice_surface" unit="W/m2" /> 157 157 <field id="hfxcndbot" long_name="Net conductive heat flux at the ice bottom (neg = ice cooling)" standard_name="conductive_heat_flux_at_sea_ice_bottom" unit="W/m2" /> 158 <field id="hfxcndcpl" long_name="Conductive heat flux coming through the coupler" standard_name="conductive_heat_flux_from_coupler" unit="W/m2" /> 158 159 159 160 <!-- diags --> … … 172 173 <field id="iceconc_cat" long_name="Sea-ice concentration per category" unit="" grid_ref="grid_T_3D_ncatice" /> 173 174 <field id="icethic_cat" long_name="Sea-ice thickness per category" unit="m" grid_ref="grid_T_3D_ncatice" /> 175 <field id="icevol_cat" long_name="Sea-ice volume per category" unit="m" grid_ref="grid_T_3D_ncatice" /> 174 176 <field id="snwthic_cat" long_name="Snow thickness per category" unit="m" grid_ref="grid_T_3D_ncatice" /> 175 177 <field id="icesalt_cat" long_name="Sea-Ice Bulk salinity per category" unit="g/kg" grid_ref="grid_T_3D_ncatice" /> -
NEMO/branches/UKMO/NEMO_4.0_fix_cpl_oce_only/src/ICE/iceupdate.F90
r10888 r11762 279 279 IF( iom_use('hfxcndbot' ) ) CALL iom_put( "hfxcndbot" , SUM( qcn_ice_bot * a_i_b, dim=3 ) ) ! Bottom conduction flux 280 280 IF( iom_use('hfxcndtop' ) ) CALL iom_put( "hfxcndtop" , SUM( qcn_ice_top * a_i_b, dim=3 ) ) ! Surface conduction flux 281 IF( iom_use('hfxcndcpl' ) ) CALL iom_put( "hfxcndcpl" , SUM( qcn_ice * a_i_b, dim=3 ) ) ! Conduction flux we are giving it 281 282 282 283 ! diags -
NEMO/branches/UKMO/NEMO_4.0_fix_cpl_oce_only/src/ICE/icewri.F90
r11081 r11762 155 155 IF( iom_use('iceconc_cat' ) ) CALL iom_put( "iceconc_cat" , a_i * zmsk00l ) ! area for categories 156 156 IF( iom_use('icethic_cat' ) ) CALL iom_put( "icethic_cat" , h_i * zmsk00l ) ! thickness for categories 157 IF( iom_use('icevol_cat' ) ) CALL iom_put( "icevol_cat" , v_i * zmsk00l ) ! volume for categories 157 158 IF( iom_use('snwthic_cat' ) ) CALL iom_put( "snwthic_cat" , h_s * zmsksnl ) ! snow depth for categories 158 159 IF( iom_use('icesalt_cat' ) ) CALL iom_put( "icesalt_cat" , s_i * zmsk00l ) ! salinity for categories
Note: See TracChangeset
for help on using the changeset viewer.