Changeset 705 for LMDZ4/branches/IPSL-CM4_IPCC_patches/libf/phylmd/physiq.F
- Timestamp:
- Sep 19, 2006, 4:23:21 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/branches/IPSL-CM4_IPCC_patches/libf/phylmd/physiq.F
r524 r705 592 592 c !et necessaire pour limiter la 593 593 c !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) 595 596 596 597 LOGICAL offline ! Controle du stockage ds "physique" … … 972 973 c Declaration des constantes et des fonctions thermodynamiques 973 974 c 975 SAVE fqfonte 974 976 #include "YOMCST.h" 975 977 #include "YOETHF.h" … … 1026 1028 IF (debut) THEN 1027 1029 C 1030 fqfonte(:,:)=0. 1028 1031 IF (if_ebil.ge.1) d_h_vcol_phy=0. 1029 1032 c … … 1510 1513 s dsens, devap, 1511 1514 s ycoefh,yu1,yv1, t2m, q2m, u10m, v10m, 1512 s fqcalving, f fonte, run_off_lic_0)1515 s fqcalving, fqfonte,ffonte, run_off_lic_0) 1513 1516 c 1514 1517 CXXX PB … … 1577 1580 zxffonte(i) = 0.0 1578 1581 zxfqcalving(i) = 0.0 1582 zxfqfonte(i) = 0.0 1579 1583 c 1580 1584 IF ( abs( pctsrf(i, is_ter) + pctsrf(i, is_lic) + … … 1603 1607 zxfqcalving(i) = zxfqcalving(i) + 1604 1608 . fqcalving(i,nsrf)*pctsrf(i,nsrf) 1609 zxfqfonte(i) = zxfqfonte(i) + 1610 . fqfonte(i,nsrf)*pctsrf(i,nsrf) 1605 1611 c ENDIF 1606 1612 ENDDO … … 1622 1628 IF (pctsrf(i,nsrf) .LT. epsfra) 1623 1629 . fqcalving(i,nsrf) = zxfqcalving(i) 1630 IF (pctsrf(i,nsrf) .LT. epsfra) 1631 . fqfonte(i,nsrf) = zxfqfonte(i) 1624 1632 ENDDO 1625 1633 ENDDO
Note: See TracChangeset
for help on using the changeset viewer.