Regridding for the new Landice Component: Difference between revisions

Add the regrid from MERRA section
Regrid all the other resolutions: New regridding script
Line 259: Line 259:


We now have commands we can use to regrid to other resolutions. Create a simple script to do so:
We now have commands we can use to regrid to other resolutions. Create a simple script to do so:
  <nowiki>$ cat regrid.latlon.csh
  <nowiki>-- borg01s121:...nobackup/mathomp4/Restarts-G20/Scripts --                                                                                                  (1075) > cat regrid.latlon.csh  
#!/usr/local/bin/csh
#!/usr/local/bin/csh


Line 267: Line 267:
# ------
# ------


$ESMABIN/regrid.pl -merra -ymd 19901128 -hr 21 -grout b -outdir /gpfsm/dnb31/mathomp4/Restarts-G20/144x91 -nobkg -nolbl -nolcv \
#echo y | $ESMABIN/regrid.pl -merra -ymd 19901128 -hr 21 -grout b -outdir /gpfsm/dnb31/mathomp4/Restarts-G20/144x91 \
                    -tagout Ganymed-1_0_M -newid b_d5_merra_jan89 -rs 3 -oceanout c
                            #-nobkg -nolbl -nolcv -tagout Ganymed-1_0_M -newid b_d5_merra_jan89 -rs 3 -oceanout c


# 288x181
# 288x181
# -------
# -------


$ESMABIN/regrid.pl -merra -ymd 19901128 -hr 21 -grout c -outdir /gpfsm/dnb31/mathomp4/Restarts-G20/288x181 -nobkg -nolbl -nolcv \
echo y | $ESMABIN/regrid.pl -merra -ymd 19901128 -hr 21 -grout c -outdir /gpfsm/dnb31/mathomp4/Restarts-G20/288x181 \
                  -tagout Ganymed-1_0_M -newid c_d5_merra_jan89 -rs 3 -oceanout c
                            -nobkg -nolbl -nolcv -tagout Ganymed-1_0_M -newid c_d5_merra_jan89 -rs 3 -oceanout c


# 576x361
# 576x361
# -------
# -------


$ESMABIN/regrid.pl -merra -ymd 19901128 -hr 21 -grout d -outdir /gpfsm/dnb31/mathomp4/Restarts-G20/576x361 -nobkg -nolbl -nolcv \
echo y | $ESMABIN/regrid.pl -merra -ymd 19901128 -hr 21 -grout d -outdir /gpfsm/dnb31/mathomp4/Restarts-G20/576x361 \
                  -tagout Ganymed-1_0_M -newid d_d5_merra_jan89 -rs 3 -oceanout c
                            -nobkg -nolbl -nolcv -tagout Ganymed-1_0_M -newid d_d5_merra_jan89 -rs 3 -oceanout c


# 1152x721
# 1152x721
# --------
# --------


$ESMABIN/regrid.pl -merra -ymd 19901128 -hr 21 -grout e -outdir /gpfsm/dnb31/mathomp4/Restarts-G20/1152x721 -nobkg -nolbl -nolcv \
echo y | $ESMABIN/regrid.pl -merra -ymd 19901128 -hr 21 -grout e -outdir /gpfsm/dnb31/mathomp4/Restarts-G20/1152x721 \
                  -tagout Ganymed-1_0_M -newid e_d5_merra_jan89 -rs 3 -oceanout c</nowiki>
                            -nobkg -nolbl -nolcv -tagout Ganymed-1_0_M -newid e_d5_merra_jan89 -rs 3 -oceanout c</nowiki>


and something similarly ugly for the cubed-sphere.
and something similarly ugly for the cubed-sphere.