New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 6472 for trunk – NEMO

Changeset 6472 for trunk


Ignore:
Timestamp:
2016-04-13T17:41:57+02:00 (8 years ago)
Author:
lovato
Message:

Include output of runoff term on SST and SSS in TRA/trasbc.F90 (#1650)

Location:
trunk/NEMOGCM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMOGCM/CONFIG/SHARED/field_def.xml

    r6418 r6472  
    277277         <field id="emp_x_sst"    long_name="Concentration/Dilution term on SST"                                                                                              unit="kg*degC/m2/s" /> 
    278278         <field id="emp_x_sss"    long_name="Concentration/Dilution term on SSS"                                                                                              unit="kg*1e-3/m2/s" />         
     279         <field id="rnf_x_sst"    long_name="Runoff term on SST"                                                                                                              unit="kg*degC/m2/s" /> 
     280         <field id="rnf_x_sss"    long_name="Runoff term on SSS"                                                                                                              unit="kg*1e-3/m2/s" /> 
    279281        
    280282         <field id="iceconc"      long_name="ice concentration"                                            standard_name="sea_ice_area_fraction"                              unit="%"            /> 
  • trunk/NEMOGCM/NEMO/OPA_SRC/TRA/trasbc.F90

    r6140 r6472  
    207207         END DO   
    208208      ENDIF 
     209 
     210      IF( iom_use('rnf_x_sst') )   CALL iom_put( "rnf_x_sst", rnf*tsn(:,:,1,jp_tem) )   ! runoff term on sst 
     211      IF( iom_use('rnf_x_sss') )   CALL iom_put( "rnf_x_sss", rnf*tsn(:,:,1,jp_sal) )   ! runoff term on sss 
     212 
    209213      ! 
    210214      !---------------------------------------- 
Note: See TracChangeset for help on using the changeset viewer.