#1698 closed Bug (wontfix)
ice-air coupling (LIM3). part3: bug in the non-solar heat flux
Reported by: | clem | Owned by: | clem |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | LIM3 | Version: | v3.6 |
Severity: | minor | Keywords: | LIM* v3.6 |
Cc: | clem |
Description (last modified by nicolasmartin)
In coupled mode, the total non-solar heat flux is imposed by the atmosphere and should remain untouched. However, in the ice model we need to remove heat flux associated to E-P from the total flux. We did it but the sign was wrong. This line must be changed:
! --- total non solar flux --- ! zqns_tot(:,:) = zqns_tot(:,:) + zqemp_ice(:,:) + zqemp_oce(:,:)
to
! --- total non solar flux --- ! zqns_tot(:,:) = zqns_tot(:,:) - zqemp_ice(:,:) - zqemp_oce(:,:)
Commit History (1)
Changeset | Author | Time | ChangeLog |
---|---|---|---|
6399 | clem | 2016-03-22T18:17:23+01:00 | solve issues for 1)wrong fresh water budget sent to passive tracers and 2)ice-air coupling. See tickets #1694 #1696 #1697 and #1698 |
Change History (12)
comment:1 Changed 9 years ago by clem
comment:2 Changed 9 years ago by clem
solved partly at r6399 but I'll keep the ticket open since updates from the atmospheric models are still needed to completely solve this issue.
comment:3 Changed 9 years ago by clem
See wiki page here:
https://forge.ipsl.jussieu.fr/nemo/wiki/Heat_Flux_air-ice-ocean_interface
comment:4 Changed 7 years ago by clevy
- Owner changed from nemo to clem
comment:5 Changed 7 years ago by clevy
- Cc clem added
- Status changed from new to assigned
comment:6 Changed 7 years ago by clevy
- Priority changed from major to critical
comment:7 Changed 7 years ago by nicolasmartin
- Description modified (diff)
comment:8 Changed 7 years ago by clem
- Resolution set to wontfix
- Severity set to minor
- Status changed from assigned to closed
comment:9 Changed 7 years ago by nemo
- Keywords LIM* added
comment:10 Changed 7 years ago by nemo
- Keywords release-3.6* added
comment:11 Changed 7 years ago by nemo
- Keywords release-3.6* removed
comment:12 Changed 3 years ago by nemo
- Keywords v3.6 added
On a second thought, it is more complicated since qns_oce and qns_ice should also be changed. Does anyone know if heat contents associated with evap and precip are included in the total non-solar flux received from the atmosphere in sbccpl.F90 (qns_tot)?