Changeset 710 for LMDZ4/branches/IPSL-CM4_IPCC_branch/libf/phylmd/physiq.F
- Timestamp:
- Sep 20, 2006, 12:54:27 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/branches/IPSL-CM4_IPCC_branch/libf/phylmd/physiq.F
r524 r710 3 3 ! 4 4 C 5 c $Header$6 c7 5 SUBROUTINE physiq (nlon,nlev,nqmax, 8 6 . debut,lafin,rjourvrai,gmtime,pdtphys, … … 592 590 c !et necessaire pour limiter la 593 591 c !hauteur de neige, en kg/m2/s 594 REAL zxffonte(klon), zxfqcalving(klon) 592 REAL fqfonte(klon,nbsrf) !Quantite d'eau de fonte des glaciers 593 REAL zxffonte(klon), zxfqcalving(klon),zxfqfonte(klon) 595 594 596 595 LOGICAL offline ! Controle du stockage ds "physique" … … 972 971 c Declaration des constantes et des fonctions thermodynamiques 973 972 c 973 SAVE fqfonte 974 974 #include "YOMCST.h" 975 975 #include "YOETHF.h" … … 1026 1026 IF (debut) THEN 1027 1027 C 1028 fqfonte(:,:)=0. 1028 1029 IF (if_ebil.ge.1) d_h_vcol_phy=0. 1029 1030 c … … 1510 1511 s dsens, devap, 1511 1512 s ycoefh,yu1,yv1, t2m, q2m, u10m, v10m, 1512 s fqcalving, f fonte, run_off_lic_0)1513 s fqcalving, fqfonte,ffonte, run_off_lic_0) 1513 1514 c 1514 1515 CXXX PB … … 1577 1578 zxffonte(i) = 0.0 1578 1579 zxfqcalving(i) = 0.0 1580 zxfqfonte(i) = 0.0 1579 1581 c 1580 1582 IF ( abs( pctsrf(i, is_ter) + pctsrf(i, is_lic) + … … 1603 1605 zxfqcalving(i) = zxfqcalving(i) + 1604 1606 . fqcalving(i,nsrf)*pctsrf(i,nsrf) 1607 zxfqfonte(i) = zxfqfonte(i) + 1608 . fqfonte(i,nsrf)*pctsrf(i,nsrf) 1605 1609 c ENDIF 1606 1610 ENDDO … … 1622 1626 IF (pctsrf(i,nsrf) .LT. epsfra) 1623 1627 . fqcalving(i,nsrf) = zxfqcalving(i) 1628 IF (pctsrf(i,nsrf) .LT. epsfra) 1629 . fqfonte(i,nsrf) = zxfqfonte(i) 1624 1630 ENDDO 1625 1631 ENDDO
Note: See TracChangeset
for help on using the changeset viewer.