Changeset 2101
- Timestamp:
- Jul 24, 2014, 6:26:10 PM (10 years ago)
- Location:
- LMDZ5/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/calbeta_clim.F90
r2098 r2101 23 23 real lat_sahel,beta(klon) 24 24 real lat_nord,lat_sud 25 26 include "iniprint.h" 25 27 !============================================== 26 28 … … 33 35 time_radian=(time+15.)*2.*pi / year_len 34 36 35 print*,'BETA time_radian',time_radian,time37 if (prt_level >= 1) print *, 'time_radian time', time_radian, time 36 38 37 39 lat(:)=180.*lat_radian(:)/pi !lat(:)=lat_radian(:) -
LMDZ5/trunk/tools/diffdef.sh
r2098 r2101 2 2 # Author: Lionel GUEZ 3 3 4 # This script compares files "*.def" other than "traceur.def" in two5 # directories. The script uses GNU versions of the utilities cut, sort6 # and uniq.4 # This script compares files "*.def" other than "traceur.def" and 5 # "out.def" in two directories. The script uses GNU versions of the 6 # utilities cut, sort and uniq. 7 7 8 8 # See guide: … … 33 33 rm -f all.def 34 34 echo "def files in $my_directory:" 35 ls !(traceur ).def35 ls !(traceur|out).def 36 36 37 37 # Concatenate and format the def files: 38 cat !(traceur ).def | tr -d " " | grep -v -E '(^#|^!|INCLUDEDEF|^$)' \39 | tr '[:lower:]' '[:upper:]' | sed 's/= N$/=FALSE/' | sed 's/=Y$/=TRUE/' \40 | s ort >all.def38 cat !(traceur|out).def | tr -d " " | grep -v -E '(^#|^!|INCLUDEDEF|^$)' \ 39 | tr '[:lower:]' '[:upper:]' | sed 's/=[NF]$/=FALSE/' \ 40 | sed 's/=[YT]$/=TRUE/' | sort >all.def 41 41 42 42 # Check that no variable is repeated:
Note: See TracChangeset
for help on using the changeset viewer.