Last change
on this file since 5116 was
5099,
checked in by abarral, 4 months ago
|
Replace most uses of CPP_DUST by the corresponding logical defined in lmdz_cppkeys_wrapper.F90
Convert several files from .F to .f90 to allow Dust to compile w/o rrtm/ecrad
Create lmdz_yoerad.f90
(lint) Remove "!" on otherwise empty line
|
File size:
641 bytes
|
Line | |
---|
1 | SUBROUTINE perturb_radlwsw(zxtsol,iflag_radia) |
---|
2 | |
---|
3 | !Case-specific radiative setup |
---|
4 | |
---|
5 | use dimphy |
---|
6 | IMPLICIT none |
---|
7 | INCLUDE "flux_arp.h" |
---|
8 | |
---|
9 | ! Arguments : |
---|
10 | !------------ |
---|
11 | REAL,DIMENSION(klon), INTENT(INOUT) :: zxtsol |
---|
12 | INTEGER, INTENT(IN) :: iflag_radia |
---|
13 | |
---|
14 | !====================================================================== |
---|
15 | |
---|
16 | IF (iflag_radia == 2) THEN |
---|
17 | |
---|
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 |
---|
21 | |
---|
22 | zxtsol(:) = tg |
---|
23 | ENDIF |
---|
24 | |
---|
25 | RETURN |
---|
26 | END |
---|
27 | |
---|
Note: See
TracBrowser
for help on using the repository browser.