Merge remote-tracking branch 'origin/release-v4.5.2'
[WRF.git] / doc / README.crtm
blobb81877dd062d6505f581531a8e6a9dfc47355d63
1 *******************
2 CRTM Coefficients
3 *******************
5 These coefficient files are binary and cannot be tracked by git and are placed on the WRFDA website for download (http://www2.mmm.ucar.edu/wrf/users/wrfda/download/crtm_coeffs.html) starting from the WRFDA release v4.0. A copy is also available under ~wrfhelp on the NCAR cheyenne supercomputer (for internal use). 
7 WRF Version History
9 ...soon to come in v4.1
10 As of major release v4.1 of WRFDA, CRTM v2.3 and associated coefficients are used.  
12 v4.0 to v4.0.x
13 As of major release v4.0 of WRFDA, CRTM v2.2.3 and associated coefficients are used. 
15 For those wishing to use instruments not contained in the NCAR versions of the coefficients above, the full set of CRTM coefficient files can be downloaded from the official CRTM ftp site http://ftp.emc.ncep.noaa.gov/jcsda/CRTM/.  They can be processed into an appropriate directory structure for WRFDA using the following extraction script:
17 ---------------------------------------------------------------------------------
18 #!/bin/bash
20 cd WRFDA/var/run #Match your local directory structure
22 rm crtm_coeffs
23 mkdir crtm_coeffs
24 cd crtm_coeffs
26 CRTMDIR='parent/directory/CRTM/REL-2.2.3' #Match your local directory structure
27 ENDIAN='Big_Endian'
28 INST=( \
29 'abi_g16' 'abi_gr' 'ahi_himawari8' \
30 'airs281_aqua' \
31 'amsr2_gcom-w1' 'amsre_aqua' \
32 'amsua_aqua' 'amsua_metop-a' 'amsua_metop-b' 'amsua_metop-c' \
33 'amsua_n15' 'amsua_n16' 'amsua_n17' 'amsua_n18' 'amsua_n19' \
34 'amsub_n15' 'amsub_n16' 'amsub_n17' \
35 'atms_npp' \
36 'hirs2_n06' 'hirs2_n07' 'hirs2_n08' 'hirs2_n09' 'hirs2_n10' 'hirs2_n11' 'hirs2_n12' 'hirs2_n14' \
37 'hirs2_tirosn' 'hirs3_n15' 'hirs3_n16' 'hirs3_n17' \
38 'hirs4_metop-a' 'hirs4_metop-b' 'hirs4_n18' 'hirs4_n19' \
39 'hsb_aqua' \
40 'iasi616_metop-a' 'iasi616_metop-b' \
41 'imgr_g13' 'imgr_g14' 'imgr_g15' \
42 'mhs_metop-a' 'mhs_metop-b' 'mhs_metop-c' \
43 'mhs_n18' 'mhs_n19' \
44 'mwhs_fy3a' 'mwhs_fy3b' \
45 'mwts_fy3a' 'mwts_fy3b' \
46 'seviri_m08' 'seviri_m09' 'seviri_m10' \
47 'ssmis_f16' 'ssmis_f17' 'ssmis_f18' 'ssmis_f19' 'ssmis_f20' \
50 mkdir ODPS
51 for instrument in ${INST[@]}
53    cp $CRTMDIR/fix/SpcCoeff/$ENDIAN/$instrument".Spc"* ./
54    cp $CRTMDIR/fix/TauCoeff/ODPS/$ENDIAN/$instrument".Tau"* ./ODPS/
55 done
56 ln -sf ODPS/* ./
57 cp $CRTMDIR/fix/AerosolCoeff/$ENDIAN/* ./
58 cp $CRTMDIR/fix/CloudCoeff/$ENDIAN/* ./
59 cp $CRTMDIR/fix/EmisCoeff/*/$ENDIAN/* ./
60 cp $CRTMDIR/fix/EmisCoeff/*/SEcategory/$ENDIAN/* ./
61 ---------------------------------------------------------------------------------
63 Note: Custom instruments can be added to INST as they are needed.  Please consider submitting source code for new instruments back to the wrf-model github repository.