It may take 8-9 hours to fully extract the full annual emissions dataset.
tar -xvjf 2017_120km.tar.bz2
After the data is uncompressed, then you need to run the link step.
Example:
setenv local_dir /work/users/l/i/lizadams/MPAS-CMAQ/
cd links_annual
ln -s ${local_dir}/120_uniform/cmas_inputs/other/* .
ln -s ${local_dir}/120_uniform/mpas_inputs/* .
ln -s ${local_dir}/120_uniform/cmas_inputs/emissions/2017_120km/* .
After this step there should be 3193 files in the links folder
cd links_annual
[lizadams@sycamore-login2 links_annual]$ ls | wc
3193 3193 261022
Note, the annual emissions account for 3173 of these files.
/work/users/l/i/lizadams/MPAS-CMAQ/120_uniform/cmas_inputs/emissions/2017_120km
[lizadams@sycamore-login2 2017_120km]$ ls | wc
3173 3173 260570
If you do the link step prior to the files being fully uncompressed, then they will not be found when running the job.
Your error was similar to this:
Abort in routine mio_fopen opening file GR_EMIS_002
due to an error No such file or directory
Find information in the log file to see what the path to the missing file is:
grep GR_EMIS_002 mpas-cmaq-288_103295.txt
setenv GR_EMIS_002 /proj/ie/proj/CMAS/CMAQ/MPAS-CMAQ/MPAS_sycamore/links_annual/g_residential_20170115_cmaq_cracmmv1_P106_2017_equates_mpas_CRACMMv1.nc
Then verify the file is missing in the linked directory.
Then check to see if the file is available in the uncompressed directory
ls /work/users/l/i/lizadams/MPAS-CMAQ/120_uniform/cmas_inputs/emissions/2017_120km/g_residential_20170115_cmaq_cracmmv1_P106_2017_equates_mpas_CRACMMv1.nc
If the file is not available in the 2017_120km extracted directory, then you need to rerun the extraction.
If the file is not available in the link directory, then you need to redo the link step after verifying that the emissions file is fully extracted.