Running on izumi (when casper is down). Currently, this is only for tests 1 (all dycores) and 2 (only SE and FV3)

ssh -X izumi.cgd.ucar.edu (on Windows machines)
ssh -Y izumi.cgd.ucar.edu (on Macs)
and authenticate with your CIT password and the DUO App.


Making initial condition changes in izumi:

Copy across the initial condition file into your SourceMods:


Make the desired modifications to the initial condition .F90 file.

Re-build the case and resubmit.



Regridding with izumi:

Create a new regrid script:

touch regrid.sh


Copy across the commands in the regrid_izumi.sh file in the github repository: https://github.com/ta440/DCMIP2025/blob/main/other_scripts/regrid_izumi.sh

Run the regridding file:

bash regrid.sh [native_grid (mpasa120, C96, C192)] [output_grid (1x1 or 0.5x0.5)] [output_file_to_regrid]

Important: remove the .nc extension when writing the output file name.



Visualizing unstructured NetCDF data with ncvis

There is a cobbled-together version of ncvis on Izumi

~zarzycki/ncvis/ncvis /home/aherring/cesm_inputfiles/topo/ne20pg3_nc3000_Co060_Fi001_PF_nullRR_Nsw042_20180606.nc

You need to login via proxyjumps
ssh -Y -J your_login_name@moffatt.cgd.ucar.edu your_login_name@izumi.cgd.ucar.edu



Downloading individual files from Izumi to your local machine:

Method 1:


scp -J USER@moffatt.cgd.ucar.edu USER@izumi.cgd.ucar.edu:FULL_PATH_TO_FILE.nc MY_LOCAL_FOLDER


Example:


scp -J zarzycki@moffatt.cgd.ucar.edu zarzycki@izumi.cgd.ucar.edu:/home/aherring/cesm_inputfiles/topo/ne20pg3_nc3000_Co060_Fi001_PF_nullRR_Nsw042_20180606.nc ~/Desktop

You will need to authenticate using your CIT password twice since it "hops" the scp command from moffat to izumi



Method 2 (potentially faster):


The machine goldhill has access to the same project/ directory as izumi. You can scp from goldhill to your local machine to directly transfer files without hopping through moffat. You'll have to move your output to the project/dcmip/$USER directory first.


scp USER@goldhill.cgd.ucar.edu:project/dcmip/$USER/FULL_PATH_TO_FILE_WITHIN_PROJECT.nc MY_LOCAL_FOLDER


Example:


scp nandrosk@goldhill.cgd.ucar.edu:project/dcmip/nandrosk/test.txt ~/Desktop



Note: If you're trying to download someone elses data you need to first ensure it has the right permissions. You can run


chmod 666 project/dcmip/$USER/FULL_PATH_TO_FILE_WITHIN_PROJECT.nc