source:
LMDZ6/branches/Amaury_dev/libf/phylmd/perturb_radlwsw.F90
@
5112
Last change on this file since 5112 was 5099, checked in by , 6 months ago | |
---|---|
File size: 641 bytes |
Rev | Line | |
---|---|---|
[2328] | 1 | SUBROUTINE perturb_radlwsw(zxtsol,iflag_radia) |
[5099] | 2 | |
[2328] | 3 | !Case-specific radiative setup |
[5099] | 4 | |
[2328] | 5 | use dimphy |
6 | IMPLICIT none | |
7 | INCLUDE "flux_arp.h" | |
[5099] | 8 | |
[2328] | 9 | ! Arguments : |
10 | !------------ | |
11 | REAL,DIMENSION(klon), INTENT(INOUT) :: zxtsol | |
12 | INTEGER, INTENT(IN) :: iflag_radia | |
[5099] | 13 | |
[2328] | 14 | !====================================================================== |
[5099] | 15 | |
[2328] | 16 | IF (iflag_radia == 2) THEN |
[5099] | 17 | |
[2328] | 18 | ! Iflag_radia = 2 : DICE case : |
19 | ! on force zxtsol=tg pour le rayonnement (MPL 20130806) | |
20 | !Sonia : Cas dice lmdz1d force en flux : on impose Tg pour imposer le LWUP | |
[5099] | 21 | |
[2328] | 22 | zxtsol(:) = tg |
23 | ENDIF | |
[5099] | 24 | |
[2328] | 25 | RETURN |
26 | END | |
27 |
Note: See TracBrowser
for help on using the repository browser.