Ignore:
Timestamp:
Sep 19, 2006, 4:23:21 PM (18 years ago)
Author:
Laurent Fairhead
Message:

Pour la conservation du flux d'eau OM, JLD
LF

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ4/branches/IPSL-CM4_IPCC_patches/libf/phylmd/physiq.F

    r524 r705  
    592592c                               !et necessaire pour limiter la
    593593c                               !hauteur de neige, en kg/m2/s
    594       REAL zxffonte(klon), zxfqcalving(klon)
     594      REAL fqfonte(klon,nbsrf)  !Quantite d'eau de fonte des glaciers
     595      REAL zxffonte(klon), zxfqcalving(klon),zxfqfonte(klon)
    595596
    596597      LOGICAL offline           ! Controle du stockage ds "physique"
     
    972973c Declaration des constantes et des fonctions thermodynamiques
    973974c
     975         SAVE fqfonte
    974976#include "YOMCST.h"
    975977#include "YOETHF.h"
     
    10261028       IF (debut) THEN
    10271029C
     1030         fqfonte(:,:)=0.
    10281031         IF (if_ebil.ge.1) d_h_vcol_phy=0.
    10291032c
     
    15101513     s            dsens, devap,
    15111514     s            ycoefh,yu1,yv1, t2m, q2m, u10m, v10m,
    1512      s            fqcalving, ffonte, run_off_lic_0)
     1515     s            fqcalving, fqfonte,ffonte, run_off_lic_0)
    15131516c
    15141517CXXX PB
     
    15771580         zxffonte(i) = 0.0
    15781581         zxfqcalving(i) = 0.0
     1582         zxfqfonte(i) = 0.0
    15791583c
    15801584         IF ( abs( pctsrf(i, is_ter) + pctsrf(i, is_lic) +
     
    16031607            zxfqcalving(i) = zxfqcalving(i) +
    16041608     .                      fqcalving(i,nsrf)*pctsrf(i,nsrf)
     1609            zxfqfonte(i) = zxfqfonte(i) +
     1610     .                      fqfonte(i,nsrf)*pctsrf(i,nsrf)
    16051611c        ENDIF
    16061612        ENDDO
     
    16221628          IF (pctsrf(i,nsrf) .LT. epsfra)
    16231629     .    fqcalving(i,nsrf) = zxfqcalving(i)
     1630          IF (pctsrf(i,nsrf) .LT. epsfra)
     1631     .    fqfonte(i,nsrf) = zxfqfonte(i)
    16241632        ENDDO
    16251633      ENDDO
Note: See TracChangeset for help on using the changeset viewer.