Changeset 1458 for LMDZ5/trunk
- Timestamp:
- Nov 22, 2010, 4:32:14 PM (14 years ago)
- Location:
- LMDZ5/trunk/libf/phylmd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/phyetat0.F
r1454 r1458 817 817 ENDIF 818 818 WRITE(str2,'(i2.2)') nsrf 819 CALL get_field("TKE"//str2,pbl_tke(:,1:klev ,nsrf),found)819 CALL get_field("TKE"//str2,pbl_tke(:,1:klev+1,nsrf),found) 820 820 IF (.NOT. found) THEN 821 821 PRINT*, "phyetat0: <TKE"//str2//"> est absent" … … 824 824 xmin = 1.0E+20 825 825 xmax = -1.0E+20 826 DO k = 1, klev 826 DO k = 1, klev+1 827 827 DO i = 1, klon 828 828 xmin = MIN(pbl_tke(i,k,nsrf),xmin) -
LMDZ5/trunk/libf/phylmd/phyredem.F
r1454 r1458 289 289 WRITE(str2,'(i2.2)') nsrf 290 290 CALL put_field("TKE"//str2,"Energ. Cineti. Turb."//str2, 291 . pbl_tke(:,1:klev ,nsrf))291 . pbl_tke(:,1:klev+1,nsrf)) 292 292 ELSE 293 293 PRINT*, "Trop de sous-mailles" -
LMDZ5/trunk/libf/phylmd/physiq.F
r1454 r1458 1846 1846 ! doit donc etre placé avant radlwsw et pbl_surface 1847 1847 1848 !!! jyg 17 Sep 2010 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 1849 call ymds2ju(year_cur, mth_eq, day_eq,0., jD_eq) 1850 day_since_equinox = (jD_cur + jH_cur) - jD_eq 1851 ! 1852 ! choix entre calcul de la longitude solaire vraie ou valeur fixee a 1853 ! solarlong0 1854 if (solarlong0<-999.) then 1855 if (new_orbit) then 1848 1856 ! calcul selon la routine utilisee pour les planetes 1849 if (new_orbit) then1850 call ymds2ju(year_cur, mth_eq, day_eq,0., jD_eq)1851 day_since_equinox = (jD_cur + jH_cur) - jD_eq1852 ! day_since_equinox = (jD_cur) - jD_eq1853 1857 call solarlong(day_since_equinox, zlongi, dist) 1854 else1858 else 1855 1859 ! calcul selon la routine utilisee pour l'AR4 1856 ! choix entre calcul de la longitude solaire vraie ou valeur fixee a 1857 ! solarlong0 1858 if (solarlong0<-999.) then 1859 CALL orbite(REAL(days_elapsed+1),zlongi,dist) 1860 else 1860 CALL orbite(REAL(days_elapsed+1),zlongi,dist) 1861 endif 1862 else 1861 1863 zlongi=solarlong0 ! longitude solaire vraie 1862 dist=1. ! distance au soleil / moyenne 1863 endif 1864 dist=1. ! distance au soleil / moyenne 1864 1865 endif 1865 1866 if(prt_level.ge.1) &
Note: See TracChangeset
for help on using the changeset viewer.