Ignore:
Timestamp:
Nov 26, 2021, 8:27:26 AM (3 years ago)
Author:
lguez
Message:

Send 3 more fields to the ocean

Send 3 more fields to the ocean to compute CO2 flux at
ocean-atmosphere interface. The three fields are dter and dser, which
already existed, and a newly created field: dt_ds. So dter and dser
have to become state variables. The variable dt_ds of module
phys_state_var_mod is only allocated and defined if
activate_ocean_skin == 2 and type_ocean == "couple".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Ocean_skin/libf/phylmd/phyredem.F90

    r4013 r4020  
    3030                                du_gwd_rando, du_gwd_front, u10m, v10m, &
    3131                                treedrg, solswfdiff, delta_sal, ds_ns, dt_ns, &
    32                                 delta_sst, ratqs_inter
     32                                delta_sst, ratqs_inter, dter, dser, dt_ds
    3333
    3434  USE geometry_mod, ONLY : longitude_deg, latitude_deg
     
    372372          CALL put_field(pass, "delta_SST", &
    373373               "ocean-air interface temperature minus bulk SST", delta_sst)
     374          CALL put_field(pass, "dter", &
     375               "ocean-air interface temperature minus subskin temperature", &
     376               dter)
     377          CALL put_field(pass, "dser", &
     378               "ocean-air interface salinity minus subskin salinity", dser)
     379          CALL put_field(pass, "dt_ds", &
     380               "(tks / tkt) * dTer", dt_ds)
    374381       end if
    375382       
Note: See TracChangeset for help on using the changeset viewer.