diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8b58bd..2e0f98c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: pr-comment: name: Comment if: github.event_name == 'issue_comment' - uses: codegat-test-org/meta-model-configs/.github/workflows/config-pr-2-comment.yml@main + uses: codegat-test-org/meta-model-configs/.github/workflows/config-pr-2-confirm.yml@main secrets: inherit permissions: contents: write # For updating metadata.yaml version and committing checksums diff --git a/accessom2.nml b/accessom2.nml new file mode 100644 index 0000000..ff41df1 --- /dev/null +++ b/accessom2.nml @@ -0,0 +1,20 @@ +&accessom2_nml + log_level = 'DEBUG' + + ! ice_ocean_timestep defines the MOM baroclinic timestep, CICE thermodynamic timestep + ! and MOM-CICE coupling interval, in seconds. + ! ice_ocean_timestep is normally a factor of the JRA55-do forcing period of 3hr = 10800s, + ! e.g. one of 100, 108, 120, 135, 144, 150, 180, 200, 216, 225, 240, 270, 300, 360, 400, 432, + ! 450, 540, 600, 675, 720, 900, 1080, 1200, 1350, 1800, 2160, 2700, 3600 or 5400 seconds. + ! The model is usually stable with a 5400s timestep, including in the initial spinup from rest. + ice_ocean_timestep = 5400 +&end + +&date_manager_nml + forcing_start_date = '1958-01-01T00:00:00' + forcing_end_date = '2019-01-01T00:00:00' + + ! Runtime for a single segment/job/submit, format is years, months, seconds, + ! two of which must be zero. + restart_period = 5, 0, 0 +&end diff --git a/atmosphere/atm.nml b/atmosphere/atm.nml new file mode 100644 index 0000000..1b8a20f --- /dev/null +++ b/atmosphere/atm.nml @@ -0,0 +1,6 @@ +&atm_nml +/ + +&runoff_nml + remap_weights_file = 'INPUT/rmp_jrar_to_cict_CONSERV.nc' +/ diff --git a/atmosphere/forcing.json b/atmosphere/forcing.json new file mode 100644 index 0000000..8a35d57 --- /dev/null +++ b/atmosphere/forcing.json @@ -0,0 +1,62 @@ +{ + "description": "JRA55-do v1.4.0 IAF forcing", + "inputs": [ + { + "filename": "INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_{{year}}01010130-{{year}}12312230.nc", + "fieldname": "rsds", + "cname": "swfld_ai" + }, + { + "filename": "INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_{{year}}01010130-{{year}}12312230.nc", + "fieldname": "rlds", + "cname": "lwfld_ai" + }, + { + "filename": "INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_{{year}}01010130-{{year}}12312230.nc", + "fieldname": "prra", + "cname": "rain_ai" + }, + { + "filename": "INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_{{year}}01010130-{{year}}12312230.nc", + "fieldname": "prsn", + "cname": "snow_ai" + }, + { + "filename": "INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_{{year}}01010000-{{year}}12312100.nc", + "fieldname": "psl", + "cname": "press_ai" + }, + { + "filename": "INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_{{year}}0101-{{year}}1231.nc", + "fieldname": "friver", + "cname": "runof_ai", + "domain": "land" + }, + { + "filename": "INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_{{year}}01010000-{{year}}12312100.nc", + "fieldname": "tas", + "cname": "tair_ai" + }, + { + "filename": "INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_{{year}}01010000-{{year}}12312100.nc", + "fieldname": "huss", + "cname": "qair_ai" + }, + { + "filename": "INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_{{year}}01010000-{{year}}12312100.nc", + "fieldname": "uas", + "cname": "uwnd_ai" + }, + { + "filename": "INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_{{year}}01010000-{{year}}12312100.nc", + "fieldname": "vas", + "cname": "vwnd_ai" + }, + { + "filename": "INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_{{year}}0101-{{year}}1231.nc", + "fieldname": "licalvf", + "cname": "licalvf_ai", + "domain": "land" + } + ] +} diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..3a565d1 --- /dev/null +++ b/config.yaml @@ -0,0 +1,110 @@ +# PBS configuration + +# If submitting to a different project to your default, uncomment line below +# and replace PROJECT_CODE with appropriate code. This may require setting shortpath +# project: PROJECT_CODE + +# Force payu to always find, and save, files in this scratch project directory +# shortpath: /scratch/PROJECT_CODE + +queue: normal +walltime: 3:00:00 +jobname: 1deg_jra55_iaf +mem: 1000GB + +# Sync options for automatically copying data from ephemeral scratch space to +# longer term storage +sync: + enable: False # set path below and change to true + path: null # Set to location on /g/data or a remote server and path (rsync syntax) + +# Model configuration +name: common +model: access-om2 +input: + - /g/data/vk83/experiments/inputs/access-om2/remapping_weights/JRA55/global.1deg/2020.05.30/JRA55_MOM1_conserve2nd.nc + - /g/data/vk83/experiments/inputs/access-om2/remapping_weights/JRA55/global.1deg/2020.05.30/JRA55_MOM1_patch.nc + - /g/data/vk83/experiments/inputs/access-om2/remapping_weights/JRA55/global.1deg/2020.05.30/rmp_jra55_cice_1st_conserve.nc + - /g/data/vk83/experiments/inputs/access-om2/remapping_weights/JRA55/global.1deg/2020.05.30/rmp_jra55_cice_2nd_conserve.nc + - /g/data/vk83/experiments/inputs/access-om2/remapping_weights/JRA55/global.1deg/2020.05.30/rmp_jra55_cice_patch.nc +submodels: + - name: atmosphere + model: yatm + exe: /g/data/vk83/apps/spack/0.20/release/linux-rocky8-x86_64/intel-19.0.5.281/libaccessom2-git.2023.10.26=2023.10.26-ltfg7jcn6t4cefotvj3kjnyu5nru26xo/bin/yatm.exe + input: + - /g/data/vk83/experiments/inputs/access-om2/remapping_weights/JRA55/global.1deg/2020.05.30/rmp_jrar_to_cict_CONSERV.nc + - /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429 + - /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429 + - /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429 + - /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429 + - /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429 + - /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429 + - /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429 + - /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429 + - /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429 + - /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429 + - /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429 + ncpus: 1 + + - name: ocean + model: mom + exe: /g/data/vk83/apps/spack/0.20/release/linux-rocky8-x86_64/intel-19.0.5.281/mom5-git.2023.11.09=2023.11.09-qji4nlmr6utrribaiyhewe4je6mifguz/bin/fms_ACCESS-OM.x + input: + - /g/data/vk83/experiments/inputs/access-om2/ocean/grids/mosaic/global.1deg/2020.05.30/grid_spec.nc + - /g/data/vk83/experiments/inputs/access-om2/ocean/grids/mosaic/global.1deg/2020.05.30/ocean_hgrid.nc + - /g/data/vk83/experiments/inputs/access-om2/ocean/grids/mosaic/global.1deg/2020.05.30/ocean_mosaic.nc + - /g/data/vk83/experiments/inputs/access-om2/ocean/grids/bathymetry/global.1deg/2020.10.22/topog.nc + - /g/data/vk83/experiments/inputs/access-om2/ocean/grids/bathymetry/global.1deg/2020.10.22/ocean_mask.nc + - /g/data/vk83/experiments/inputs/access-om2/ocean/grids/vertical/global.1deg/2020.10.22/ocean_vgrid.nc + - /g/data/vk83/experiments/inputs/access-om2/ocean/processor_masks/global.1deg/216.16x15/2020.05.30/ocean_mask_table + - /g/data/vk83/experiments/inputs/access-om2/ocean/chlorophyll/global.1deg/2020.05.30/chl.nc + - /g/data/vk83/experiments/inputs/access-om2/ocean/initial_conditions/global.1deg/2020.10.22/ocean_temp_salt.res.nc + - /g/data/vk83/experiments/inputs/access-om2/ocean/tides/global.1deg/2020.05.30/tideamp.nc + - /g/data/vk83/experiments/inputs/access-om2/ocean/tides/global.1deg/2020.05.30/roughness_amp.nc + - /g/data/vk83/experiments/inputs/access-om2/ocean/tides/global.1deg/2020.05.30/roughness_cdbot.nc + - /g/data/vk83/experiments/inputs/access-om2/ocean/surface_salt_restoring/global.1deg/2020.05.30/salt_sfc_restore.nc + ncpus: 216 + + - name: ice + model: cice5 + exe: /g/data/vk83/apps/spack/0.20/release/linux-rocky8-x86_64/intel-19.0.5.281/cice5-git.2023.10.19=2023.10.19-v3zncpqjj2gyseudbwiudolcjq3k3leo/bin/cice_auscom_360x300_24x1_24p.exe + input: + - /g/data/vk83/experiments/inputs/access-om2/ice/grids/global.1deg/2020.05.30/grid.nc + - /g/data/vk83/experiments/inputs/access-om2/ice/grids/global.1deg/2020.10.22/kmt.nc + - /g/data/vk83/experiments/inputs/access-om2/ice/initial_conditions/global.1deg/2020.05.30/i2o.nc + - /g/data/vk83/experiments/inputs/access-om2/ice/initial_conditions/global.1deg/2020.05.30/o2i.nc + - /g/data/vk83/experiments/inputs/access-om2/ice/initial_conditions/global.1deg/2020.05.30/u_star.nc + - /g/data/vk83/experiments/inputs/access-om2/ice/initial_conditions/global.1deg/2020.05.30/monthly_sstsss.nc + ncpus: 24 + +# Collation +collate: + restart: true + walltime: 1:00:00 + mem: 30GB + ncpus: 4 + queue: normal + exe: /g/data/vk83/apps/spack/0.20/release/linux-rocky8-x86_64/intel-19.0.5.281/mom5-git.2023.11.09=2023.11.09-qji4nlmr6utrribaiyhewe4je6mifguz/bin/mppnccombine.spack + +# Misc +runlog: true +stacksize: unlimited +restart_freq: 5YS +mpirun: --mca io ompio --mca io_ompio_num_aggregators 1 +qsub_flags: -W umask=027 +env: + UCX_LOG_LEVEL: 'error' + +manifest: + reproduce: + exe: True + +# set number of cores per node (28 for normalbw, 48 for normal on gadi) +platform: + nodesize: 48 + +# sweep and resubmit on specific errors - see https://github.com/payu-org/payu/issues/241#issuecomment-610739771 +userscripts: + error: tools/resub.sh + run: rm -f resubmit.count + sync: /g/data/vk83/apps/om2-scripts/concatenate_ice/concat_ice_daily.sh diff --git a/doc/Fabio2018_Namelist_meeting_final.pdf b/doc/Fabio2018_Namelist_meeting_final.pdf new file mode 100755 index 0000000..1c1a3d8 Binary files /dev/null and b/doc/Fabio2018_Namelist_meeting_final.pdf differ diff --git a/ice/cice_in.nml b/ice/cice_in.nml new file mode 100644 index 0000000..44614e4 --- /dev/null +++ b/ice/cice_in.nml @@ -0,0 +1,376 @@ +&setup_nml + days_per_year = 365 + dbug = .false. + diag_file = 'ice_diag.d' + diag_type = 'file' + diagfreq = 960 + dt = 3600 + dump_last = .true. + dumpfreq = 'y' + dumpfreq_n = 1 + hist_avg = .true. + histfreq = 'd', 'm', 'x', 'x', 'x' + histfreq_n = 1, 1, 1, 1, 1 + history_chunksize_x = 180 + history_chunksize_y = 150 + history_deflate_level = 1 + history_dir = './OUTPUT/' + history_file = 'iceh' + ice_ic = 'default' + incond_dir = './OUTPUT/' + incond_file = 'iceh_ic' + istep0 = 0 + latpnt = 90.0, -65.0 + lonpnt = 0.0, -45.0 + ndtd = 1 + npt = 35040 + pointer_file = './RESTART/ice.restart_file' + print_global = .false. + print_points = .false. + restart = .false. + restart_dir = './RESTART/' + restart_ext = .false. + restart_file = 'iced' + runtype = 'initial' + use_leap_years = .false. + use_restart_time = .true. + write_ic = .false. + year_init = 1 +/ + +&grid_nml + grid_file = 'RESTART/grid.nc' + grid_format = 'nc' + grid_type = 'tripole' + kcatbound = 0 + kmt_file = 'RESTART/kmt.nc' +/ + +&domain_nml + distribution_type = 'cartesian' + distribution_wght = 'latitude' + ew_boundary_type = 'cyclic' + maskhalo_bound = .true. + maskhalo_dyn = .true. + maskhalo_remap = .true. + nprocs = 24 + ns_boundary_type = 'tripole' + processor_shape = 'slenderX1' +/ + +&tracer_nml + restart_aero = .false. + restart_age = .false. + restart_fy = .false. + restart_lvl = .false. + restart_pond_cesm = .false. + restart_pond_lvl = .false. + restart_pond_topo = .false. + tr_aero = .false. + tr_fy = .false. + tr_iage = .false. + tr_lvl = .false. + tr_pond_cesm = .false. + tr_pond_lvl = .false. + tr_pond_topo = .false. +/ + +&thermo_nml + a_rapid_mode = 0.0005 + aspect_rapid_mode = 1.0 + chio = 0.006 + conduct = 'bubbly' + dsdt_slow_mode = -5e-08 + kitd = 1 + ktherm = 1 + phi_c_slow_mode = 0.05 + phi_i_mushy = 0.85 + rac_rapid_mode = 10.0 +/ + +&dynamics_nml + advection = 'remap' + cosw = 1.0 + dragio = 0.00536 + iceruf = 0.0005 + kdyn = 1 + krdg_partic = 1 + krdg_redist = 1 + kstrength = 1 + mu_rdg = 3 + ndte = 120 + revised_evp = .false. + sinw = 0.0 +/ + +&shortwave_nml + ahmax = 0.1 + albedo_type = 'default' + albicei = 0.44 + albicev = 0.86 + albsnowi = 0.7 + albsnowv = 0.98 + dalb_mlt = -0.02 + dt_mlt = 1.0 + r_ice = 0.0 + r_pnd = 0.0 + r_snw = 0.0 + rsnw_mlt = 1500.0 + shortwave = 'default' + snowpatch = 0.02 + tocnfrz = -1.8 +/ + +&ponds_nml + dpscale = 0.001 + frzpnd = 'hlid' + hp1 = 0.01 + hs0 = 0.0 + hs1 = 0.03 + pndaspect = 0.8 + rfracmax = 1.0 + rfracmin = 0.15 +/ + +&zbgc_nml + bgc_data_dir = 'unknown_bgc_data_dir' + bgc_flux_type = 'Jin2006' + nit_data_type = 'default' + phi_snow = 0.5 + restart_bgc = .false. + restart_hbrine = .false. + restore_bgc = .false. + sil_data_type = 'default' + skl_bgc = .false. + tr_bgc_am_sk = .false. + tr_bgc_c_sk = .false. + tr_bgc_chl_sk = .false. + tr_bgc_dms_sk = .false. + tr_bgc_dmspd_sk = .false. + tr_bgc_dmspp_sk = .false. + tr_bgc_sil_sk = .false. + tr_brine = .false. +/ + +&forcing_nml + atm_data_dir = 'unknown_atm_data_dir' + atm_data_format = 'nc' + atm_data_type = 'default' + atmbndy = 'default' + calc_strair = .true. + calc_tsfc = .true. + formdrag = .false. + fyear_init = 1 + highfreq = .true. + oceanmixed_file = 'unknown_oceanmixed_file' + oceanmixed_ice = .false. + ocn_data_dir = 'unknown_ocn_data_dir' + ocn_data_format = 'nc' + precip_units = 'mks' + restore_ice = .false. + restore_sst = .false. + sss_data_type = 'default' + sst_data_type = 'default' + tfrz_option = 'linear_salt' + trestore = 0 + update_ocn_f = .true. + ustar_min = 0.0005 + ycycle = 1 +/ + +&icefields_nml + f_aice = 'md' + f_aicen = 'm' + f_aisnap = 'x' + f_albice = 'm' + f_albpnd = 'x' + f_albsni = 'm' + f_albsno = 'm' + f_alidf_ai = 'x' + f_alidr = 'x' + f_alidr_ai = 'x' + f_alvdf_ai = 'x' + f_alvdr = 'x' + f_alvdr_ai = 'x' + f_angle = .true. + f_anglet = .true. + f_bounds = .false. + f_congel = 'md' + f_coszen = 'x' + f_dagedtd = 'x' + f_dagedtt = 'x' + f_daidtd = 'm' + f_daidtt = 'm' + f_divu = 'm' + f_dsnow = 'x' + f_dvidtd = 'md' + f_dvidtt = 'md' + f_dxt = .true. + f_dxu = .true. + f_dyt = .true. + f_dyu = .true. + f_evap = 'x' + f_evap_ai = 'm' + f_fcondtop_ai = 'm' + f_fcondtopn_ai = 'm' + f_fhocn = 'x' + f_fhocn_ai = 'm' + f_flat = 'x' + f_flat_ai = 'm' + f_flatn_ai = 'm' + f_flwdn = 'm' + f_flwup = 'x' + f_flwup_ai = 'm' + f_fmeltt_ai = 'm' + f_fmelttn_ai = 'm' + f_frazil = 'md' + f_fresh = 'x' + f_fresh_ai = 'm' + f_frz_onset = 'x' + f_frzmlt = 'md' + f_fsalt = 'm' + f_fsalt_ai = 'm' + f_fsens = 'x' + f_fsens_ai = 'm' + f_fsurf_ai = 'x' + f_fsurfn_ai = 'm' + f_fswabs = 'x' + f_fswabs_ai = 'm' + f_fswdn = 'm' + f_fswfac = 'm' + f_fswthru = 'x' + f_fswthru_ai = 'm' + f_fswup = 'm' + f_fy = 'x' + f_hi = 'md' + f_hisnap = 'x' + f_hs = 'md' + f_hte = .true. + f_htn = .true. + f_iage = 'm' + f_icepresent = 'm' + f_meltb = 'm' + f_meltl = 'm' + f_melts = 'm' + f_meltt = 'm' + f_mlt_onset = 'x' + f_ncat = .true. + f_qref = 'x' + f_rain = 'x' + f_rain_ai = 'm' + f_shear = 'm' + f_sice = 'm' + f_sig1 = 'x' + f_sig2 = 'x' + f_sinz = 'x' + f_snoice = 'md' + f_snow = 'x' + f_snow_ai = 'm' + f_sss = 'x' + f_sst = 'x' + f_strairx = 'm' + f_strairy = 'm' + f_strcorx = 'm' + f_strcory = 'm' + f_strength = 'm' + f_strintx = 'm' + f_strinty = 'm' + f_strocnx = 'm' + f_strocny = 'm' + f_strtltx = 'm' + f_strtlty = 'm' + f_tair = 'm' + f_tarea = .true. + f_tinz = 'x' + f_tmask = .true. + f_tref = 'x' + f_trsig = 'm' + f_tsfc = 'm' + f_tsnz = 'x' + f_uarea = .true. + f_uatm = 'x' + f_uocn = 'x' + f_uvel = 'md' + f_vatm = 'x' + f_vgrdb = .false. + f_vgrdi = .false. + f_vgrds = .false. + f_vicen = 'm' + f_vocn = 'x' + f_vvel = 'md' +/ + +&icefields_mechred_nml + f_alvl = 'm' + f_aparticn = 'x' + f_araftn = 'x' + f_ardg = 'm' + f_ardgn = 'x' + f_aredistn = 'x' + f_dardg1dt = 'x' + f_dardg1ndt = 'x' + f_dardg2dt = 'x' + f_dardg2ndt = 'x' + f_dvirdgdt = 'x' + f_dvirdgndt = 'x' + f_krdgn = 'x' + f_opening = 'm' + f_vlvl = 'm' + f_vraftn = 'x' + f_vrdg = 'm' + f_vrdgn = 'x' + f_vredistn = 'x' +/ + +&icefields_pond_nml + f_apeff = 'x' + f_apeff_ai = 'x' + f_apeffn = 'x' + f_apond = 'x' + f_apond_ai = 'x' + f_apondn = 'x' + f_hpond = 'x' + f_hpond_ai = 'x' + f_hpondn = 'x' + f_ipond = 'x' + f_ipond_ai = 'x' +/ + +&icefields_bgc_nml + f_aero = 'x' + f_bgc_am_ml = 'x' + f_bgc_am_sk = 'x' + f_bgc_c_sk = 'x' + f_bgc_chl_sk = 'x' + f_bgc_dms_sk = 'x' + f_bgc_dmsp_ml = 'x' + f_bgc_dmspd_sk = 'x' + f_bgc_dmspp_sk = 'x' + f_bgc_n_sk = 'x' + f_bgc_nit_ml = 'x' + f_bgc_nit_sk = 'x' + f_bgc_sil_ml = 'x' + f_bgc_sil_sk = 'x' + f_bphi = 'x' + f_btin = 'x' + f_faero_atm = 'x' + f_faero_ocn = 'x' + f_fbri = 'x' + f_fn = 'x' + f_fn_ai = 'x' + f_fnh = 'x' + f_fnh_ai = 'x' + f_fno = 'x' + f_fno_ai = 'x' + f_fsil = 'x' + f_fsil_ai = 'x' + f_grownet = 'x' + f_hbri = 'x' + f_ppnet = 'x' +/ + +&icefields_drag_nml + f_cdn_atm = 'x' + f_cdn_ocn = 'x' + f_drag = 'x' +/ diff --git a/ice/input_ice.nml b/ice/input_ice.nml new file mode 100644 index 0000000..d77f918 --- /dev/null +++ b/ice/input_ice.nml @@ -0,0 +1,29 @@ +&coupling_nml + chk_a2i_fields = .false. + chk_frzmlt_sst = .false. + chk_gfdl_roughness = .false. + chk_i2a_fields = .false. + chk_i2o_fields = .false. + chk_o2i_fields = .false. + cst_ocn_albedo = .false. + fields_from_atm = 'swfld_i', 'lwfld_i', 'rain_i', 'snow_i', 'press_i', + 'runof_i', 'tair_i', 'qair_i', 'uwnd_i', 'vwnd_i', + 'licalvf_i' + fields_from_ocn = 'sst_i', 'sss_i', 'ssu_i', 'ssv_i', 'sslx_i', 'ssly_i', + 'pfmice_i' + fields_to_ocn = 'strsu_io', 'strsv_io', 'rain_io', 'snow_io', 'stflx_io', + 'htflx_io', 'swflx_io', 'qflux_io', 'shflx_io', + 'lwflx_io', 'runof_io', 'press_io', 'aice_io', 'melt_io', + 'form_io', 'licefw_io', 'licefh_io' + gfdl_surface_flux = .true. + ice_fwflux = .true. + ice_pressure_on = .true. + limit_icemelt = .false. + meltlimit = -200.0 + ocn_albedo = 0.1 + pop_icediag = .true. + precip_factor = 1.0 + rotate_winds = .true. + use_ocnslope = .false. + use_umask = .false. +/ diff --git a/ice/input_ice_gfdl.nml b/ice/input_ice_gfdl.nml new file mode 100644 index 0000000..10395c4 --- /dev/null +++ b/ice/input_ice_gfdl.nml @@ -0,0 +1,25 @@ +&ocean_rough_nml + charnock = 0.032 + do_cap40 = .false. + do_highwind = .false. + rough_scheme = 'beljaars' + roughness_heat = 5.8e-05 + roughness_min = 1e-06 + roughness_moist = 5.8e-05 + roughness_mom = 5.8e-05 + zcoh1 = 0.0 + zcoq1 = 0.0 +/ + +&surface_flux_nml + alt_gustiness = .false. + gust_const = 1.0 + gust_min = 0.0 + ncar_ocean_flux = .true. + ncar_ocean_flux_orig = .false. + no_neg_q = .false. + old_dtaudv = .false. + raoult_sat_vap = .false. + use_mixing_ratio = .false. + use_virtual_temp = .true. +/ diff --git a/ice/input_ice_monin.nml b/ice/input_ice_monin.nml new file mode 100644 index 0000000..edc9c2d --- /dev/null +++ b/ice/input_ice_monin.nml @@ -0,0 +1,3 @@ +&monin_obukhov_nml + neutral = .true. +/ diff --git a/manifests/exe.yaml b/manifests/exe.yaml new file mode 100644 index 0000000..80ed3f5 --- /dev/null +++ b/manifests/exe.yaml @@ -0,0 +1,18 @@ +format: yamanifest +version: 1.0 +--- +work/atmosphere/yatm.exe: + fullpath: /g/data/vk83/apps/spack/0.20/release/linux-rocky8-x86_64/intel-19.0.5.281/libaccessom2-git.2023.10.26=2023.10.26-ltfg7jcn6t4cefotvj3kjnyu5nru26xo/bin/yatm.exe + hashes: + binhash: 4e8b4ef76e971c4af3b26cfac632e160 + md5: 5baa1d417fe6708fc30cbeaa57d82f96 +work/ice/cice_auscom_360x300_24x1_24p.exe: + fullpath: /g/data/vk83/apps/spack/0.20/release/linux-rocky8-x86_64/intel-19.0.5.281/cice5-git.2023.10.19=2023.10.19-v3zncpqjj2gyseudbwiudolcjq3k3leo/bin/cice_auscom_360x300_24x1_24p.exe + hashes: + binhash: 3a65f67d21152e77034da28c22a94c66 + md5: 37866455b057c85c3ea50c0ef0ea840b +work/ocean/fms_ACCESS-OM.x: + fullpath: /g/data/vk83/apps/spack/0.20/release/linux-rocky8-x86_64/intel-19.0.5.281/mom5-git.2023.11.09=2023.11.09-qji4nlmr6utrribaiyhewe4je6mifguz/bin/fms_ACCESS-OM.x + hashes: + binhash: 92ce1ff1a38f44f92ceafd67e8e7142c + md5: a3f10baeadb88e813b4a8121f61a6226 diff --git a/manifests/input.yaml b/manifests/input.yaml new file mode 100644 index 0000000..9b44ae4 --- /dev/null +++ b/manifests/input.yaml @@ -0,0 +1,3544 @@ +format: yamanifest +version: 1.0 +--- +work/INPUT/JRA55_MOM1_conserve2nd.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/remapping_weights/JRA55/global.1deg/2020.05.30/JRA55_MOM1_conserve2nd.nc + hashes: + binhash: abe66e4b33cbb75d25c010ea5f96f053 + md5: 00be8ec0f1126055b65dc68178ce4eb5 +work/INPUT/JRA55_MOM1_patch.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/remapping_weights/JRA55/global.1deg/2020.05.30/JRA55_MOM1_patch.nc + hashes: + binhash: af316080d1711daa25abadbf0548718c + md5: 6c345282e51521828f62b842e58dd734 +work/INPUT/rmp_jra55_cice_1st_conserve.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/remapping_weights/JRA55/global.1deg/2020.05.30/rmp_jra55_cice_1st_conserve.nc + hashes: + binhash: bee0b815a97dc6eaf8c2417b4579a31f + md5: 6404d936d4898e5ed31e62b585d630cf +work/INPUT/rmp_jra55_cice_2nd_conserve.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/remapping_weights/JRA55/global.1deg/2020.05.30/rmp_jra55_cice_2nd_conserve.nc + hashes: + binhash: 57da74118e8eb06d0c26255fd0b8e6db + md5: 79885c8149d65a55d093244935f62360 +work/INPUT/rmp_jra55_cice_patch.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/remapping_weights/JRA55/global.1deg/2020.05.30/rmp_jra55_cice_patch.nc + hashes: + binhash: f317a81f25961ba37f27b873b364a8d6 + md5: aa91ea2e3cdef04f58ed5db8f8d7de6d +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19580101-19581231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19580101-19581231.nc + hashes: + binhash: 6baf157803377072d885fb9ffbb192b7 + md5: 85f7571c1926560c8d5e1d40fea55ca3 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19590101-19591231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19590101-19591231.nc + hashes: + binhash: d5a0523973c42aaa08f1e6cc4ec9c184 + md5: 509c3ca40ddc508a035b34435cc42e17 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19600101-19601231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19600101-19601231.nc + hashes: + binhash: 8756251e589cd0e5a92cf0d55db2f780 + md5: f13cd16ca844833e8297c009af8f330d +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19610101-19611231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19610101-19611231.nc + hashes: + binhash: 6440826b08f78abb5bef6705a2d710ff + md5: 292c6d74190836159fef0453b81543af +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19620101-19621231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19620101-19621231.nc + hashes: + binhash: 27c73a96bbc62ee4f4e7e5c52ca1b27a + md5: 3bdb6b8c0be193ee91bd895f9d204b89 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19630101-19631231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19630101-19631231.nc + hashes: + binhash: 6357a10310d39fc3b2ed2a212df379fa + md5: a52bdae5309b241436352d7a836110d9 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19640101-19641231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19640101-19641231.nc + hashes: + binhash: 6968c5c2481f52c3041efef017475084 + md5: 654014e149a9e5e319ded3870cf37535 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19650101-19651231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19650101-19651231.nc + hashes: + binhash: cbe8226ffc1a7cd0de7297c9597e7fe8 + md5: e329f15895658ff145ced92831514725 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19660101-19661231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19660101-19661231.nc + hashes: + binhash: 45474303ac17956f72a868adfa59d271 + md5: 7fa0c7a24dfc8412f5bb87d460ece212 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19670101-19671231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19670101-19671231.nc + hashes: + binhash: 65cf925bce0a22ddb8baf864154077da + md5: 706405e07baff89562e1f8f0275b10e3 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19680101-19681231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19680101-19681231.nc + hashes: + binhash: 70613c6a3396b0e3da4962deb2bf03a6 + md5: 6eebcb9fefe653b434e6b5017af6a827 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19690101-19691231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19690101-19691231.nc + hashes: + binhash: c8aede62f2e772c4b6f3ab5bb5ada18e + md5: d156cc47cf83235fe2beb6910778bf3b +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19700101-19701231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19700101-19701231.nc + hashes: + binhash: 6ddf9473a1b114a0a6c29d4808ce7d82 + md5: d214a7d5a9fe56a28963ff414d97b694 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19710101-19711231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19710101-19711231.nc + hashes: + binhash: b83ed63785e2dd2ab02bcaa97306a3a5 + md5: fb5c25610da65d1fb672813120a735a4 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19720101-19721231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19720101-19721231.nc + hashes: + binhash: 1c3cc665e46a7d16b6e6c9c2ab4c7198 + md5: 00c2f6aa9163049d8148e43dcd859c04 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19730101-19731231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19730101-19731231.nc + hashes: + binhash: bc2349e769b3c26b06a7c3d7d33bd2ab + md5: ba49d2185768db4350b465443e8eec2f +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19740101-19741231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19740101-19741231.nc + hashes: + binhash: 8015208001f1fa3cc7658ad36c0e03aa + md5: ae49991379328f3a5f1b162a64022cfc +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19750101-19751231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19750101-19751231.nc + hashes: + binhash: d72a2c05f11cd12d9022199024332006 + md5: c55f8f2d4fbf7a8cee8284b10ded8f0a +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19760101-19761231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19760101-19761231.nc + hashes: + binhash: c028df81ed8397f38634a7b76cbb526a + md5: 35f90d1879e1a8f2f19ec5b9015221b2 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19770101-19771231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19770101-19771231.nc + hashes: + binhash: aa0913b8c503215569d24677209190cd + md5: 1c06ae13777dfbe907a911d2bbd04b13 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19780101-19781231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19780101-19781231.nc + hashes: + binhash: 63eee9f02077ce726bd303a8274fbbbc + md5: 34962ae8c3f138afe3b9181b0c3481c1 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19790101-19791231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19790101-19791231.nc + hashes: + binhash: 1971d2895af135ba62eacd705be00ea4 + md5: f450dddf8dd7f73240953bd1392fad0e +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19800101-19801231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19800101-19801231.nc + hashes: + binhash: ff0ffd86feb884a2bb76558697b56210 + md5: 276e2d7dfe9d12a43e8b9da3ce57d055 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19810101-19811231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19810101-19811231.nc + hashes: + binhash: 3b6f5d2855411b2c11336221a0fa7bcf + md5: 51a09f658d14a92ed9ac9fb20b80a1f1 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19820101-19821231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19820101-19821231.nc + hashes: + binhash: bd37d87654704a191d68547ff9b4fa2c + md5: ca4121eeac6dbfc1916f03bf78d946f4 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19830101-19831231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19830101-19831231.nc + hashes: + binhash: 70e2253bffa9138943c6e6b503f63297 + md5: 2d016b2147eecf1ca31ea881159b27d8 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19840101-19841231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19840101-19841231.nc + hashes: + binhash: 653e12466fdc9bc1091e2945fcc68850 + md5: 1905626b0d9cf2f0a227913c3fbd5aaf +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19850101-19851231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19850101-19851231.nc + hashes: + binhash: 3978d5d9ec91f3301ed9906fa40a376e + md5: 6620b96409a7af6f38d0d61d7ef0b5c1 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19860101-19861231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19860101-19861231.nc + hashes: + binhash: 1ba43ecf0387fd714a55c361aec150a9 + md5: 0dfc13fb62d8ff8330897efb5e8a3ca2 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19870101-19871231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19870101-19871231.nc + hashes: + binhash: 367940e69d308a0eda2cd94b5435e4b8 + md5: 31bc1cee6c3b4a9c48a2ebe3c0cfeb53 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19880101-19881231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19880101-19881231.nc + hashes: + binhash: 1315879bf6221d651d47eca4633ba246 + md5: b9fbe4c7eec2d496cdc80b4550597ac6 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19890101-19891231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19890101-19891231.nc + hashes: + binhash: 779061a13e0d27d35caab7bbbdd91b9f + md5: 658786e1d803f9e3b2bd3fa6f5cf98b7 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19900101-19901231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19900101-19901231.nc + hashes: + binhash: 57df0b4536307b51a39b53ddd2cbe10a + md5: fe07c98fad52f17bb377d625bc88c38c +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19910101-19911231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19910101-19911231.nc + hashes: + binhash: ecc5e771ca63f8abfc2db635728cd733 + md5: 4ce7e5b4821ee936c48bc1b7cb9898ef +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19920101-19921231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19920101-19921231.nc + hashes: + binhash: be57cc09cc19fd12e30a97970a1884fd + md5: 87beeae8a3fe0c5fd6ef0b15608033a8 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19930101-19931231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19930101-19931231.nc + hashes: + binhash: 78fc483f275a38939d74f6fb20a2eeca + md5: c93c3d18d0430a5067c597fa79d89e3d +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19940101-19941231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19940101-19941231.nc + hashes: + binhash: 711197531a82ef307e8f06ca67a0a49b + md5: b344b5fcdc4307b7640973b0f3bb8cda +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19950101-19951231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19950101-19951231.nc + hashes: + binhash: 53289f9112db54177ad06b0a8a566d1d + md5: e6adc896eb5dae51fef9bd3f986fe71b +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19960101-19961231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19960101-19961231.nc + hashes: + binhash: 29a3119f237abbe5e6b72a3c3db76e43 + md5: 98d40136ed8c7b3003196aa54e89f3ec +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19970101-19971231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19970101-19971231.nc + hashes: + binhash: f52b0a1e86aed52789ed9d40819dd60b + md5: db75a5d69ab686335c4f4478c8d21f02 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19980101-19981231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19980101-19981231.nc + hashes: + binhash: d70b9b224ea5178ebfe3c952b90eb6ed + md5: fb1a1672c248a739b0b0673f84a97366 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19990101-19991231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19990101-19991231.nc + hashes: + binhash: d9031b9c38bf8f9faf24f6615710f8e3 + md5: c9edb6611ac68e290087d34d700e3a79 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20000101-20001231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20000101-20001231.nc + hashes: + binhash: ee2787806a5120fa22cec89014e7f5ba + md5: 0de80f1744cdd5f310d7bd3864ca9dc0 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20010101-20011231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20010101-20011231.nc + hashes: + binhash: c1abd600b97ac4b6513643de8a293f49 + md5: f150238371a844142611df01eee3ca19 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20020101-20021231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20020101-20021231.nc + hashes: + binhash: eb7f732799cdef9bda8d59882ba0bd44 + md5: bb2af90fe9e0c9c4b839226c6b2cdd5e +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20030101-20031231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20030101-20031231.nc + hashes: + binhash: 8402de3d8960ba9e522dbd024c7a4169 + md5: 32047c99e0cd10d281917b883fe9d601 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20040101-20041231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20040101-20041231.nc + hashes: + binhash: 59eaa024c918ea604fd92c7b23a52a39 + md5: 77db35c5be0aedb86aaaba1e426e6ae4 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20050101-20051231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20050101-20051231.nc + hashes: + binhash: 740b902758710e357c5c7dc6aeaa6a0a + md5: f83c449fd30e62255974b29376ade9cd +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20060101-20061231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20060101-20061231.nc + hashes: + binhash: 913956d0c0064d7e9ae3368e9a4694b4 + md5: fb9410439b9e02ff1e143661913e709c +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20070101-20071231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20070101-20071231.nc + hashes: + binhash: af7199645e5a05a6e73db849a59e3b6a + md5: 73ecb39aa802b3334eb3676fd79601f2 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20080101-20081231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20080101-20081231.nc + hashes: + binhash: 47b6b1cc34303007e19364d3039acdaf + md5: 873ca6c1c7df1845d265bb1f7c1dbcf0 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20090101-20091231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20090101-20091231.nc + hashes: + binhash: 596457a1073e0986ced5d8a0fe10cd78 + md5: 3cec211b469e4561708bf095f7d48b18 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20100101-20101231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20100101-20101231.nc + hashes: + binhash: ac709624824a7cfcdf04a13719aed863 + md5: 7dff12fe76c35dcd483d07a117ba76bf +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20110101-20111231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20110101-20111231.nc + hashes: + binhash: 787f3fe17c687c4a833e348c20ef2ab6 + md5: 7f0005094ec92cf8b2c3c789bc4eff36 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20120101-20121231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20120101-20121231.nc + hashes: + binhash: 49e53a7b2da15c1e47c0f116e84c2de2 + md5: 30f7704577460cdf55146beecb7da790 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20130101-20131231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20130101-20131231.nc + hashes: + binhash: 89eaac6afe2de7677ce3d8238d140df3 + md5: e537b381f9ab5251fbb77b66ee300e97 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20140101-20141231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20140101-20141231.nc + hashes: + binhash: 0cb62b25af58b36bfc9b8d56e8a20b3c + md5: 02c8f0c62314c962d3a667b95039e9fc +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20150101-20151231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20150101-20151231.nc + hashes: + binhash: a968de3761f7759ef26bb26ac5499ca5 + md5: b5f3690d69904531a4881baba1339463 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20160101-20161231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20160101-20161231.nc + hashes: + binhash: c7e9da079456839da764bbcb8a54fe47 + md5: f47f7b5a75da2baf6783bd2577bb4c97 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20170101-20171231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20170101-20171231.nc + hashes: + binhash: 4ad8c0494fbe185353c0ac27bb632803 + md5: 32805c79aca5e6ae4fe863377f886d7f +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20180101-20181231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20180101-20181231.nc + hashes: + binhash: 9e48e62738ed171424a9affd1a33de04 + md5: f97dfa5400b0c2dc8bd45a33168cc2a6 +work/atmosphere/INPUT/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20190101-20190105.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/land/day/friver/gr/v20190429/friver_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20190101-20190105.nc + hashes: + binhash: 36d7f4b4cd4d038da099b444d984d0b0 + md5: 8cdb2421fa7056bc3c07577005071f71 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010000-195812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010000-195812312100.nc + hashes: + binhash: 2782e19a9b81a4ff517847c0b19d0144 + md5: 3392450cebbfa3e668a020869842d959 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010000-195912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010000-195912312100.nc + hashes: + binhash: 11954c54b8e7c7635533812a380b5db0 + md5: 5d0a0a96bb61aa1871e3ecb74fca1fca +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010000-196012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010000-196012312100.nc + hashes: + binhash: b888ebb2d9d612280cf74994c715d159 + md5: 432065b6b0bfa84b9484de934478638b +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010000-196112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010000-196112312100.nc + hashes: + binhash: 7bda1bdc3fe8e622b852dde3238753e1 + md5: d4349173cafde8bc4d56e7163984de01 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010000-196212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010000-196212312100.nc + hashes: + binhash: 914b31fb363d678a8137524856576a88 + md5: 8d4e24c637d6fdd0cfabb2ea4ed046fe +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010000-196312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010000-196312312100.nc + hashes: + binhash: 1574c40f00a8ef6c13489bdd79fd7337 + md5: 14cd75e109b268ef5fd5d93c11fd9db9 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010000-196412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010000-196412312100.nc + hashes: + binhash: 829dd4f34a3fd233676ad637d6a79606 + md5: 6a47d386ba98fadbe17ec90176c1cc31 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010000-196512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010000-196512312100.nc + hashes: + binhash: 861dead7f5a539242de290aaa1749cca + md5: fad999a125783635bcddbdc433220801 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010000-196612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010000-196612312100.nc + hashes: + binhash: 1e09e2e6f21461a7bd319a19517b02ce + md5: 06331818a2a9eec3d744c6cc1640c887 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010000-196712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010000-196712312100.nc + hashes: + binhash: e0eab02a1b8d00ee4e871c68f245ec3a + md5: 8226c7e42db42e766619706bcf8d772c +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010000-196812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010000-196812312100.nc + hashes: + binhash: 611201ba5d16bb900f4aa1439238cb49 + md5: cec41bbe965e4a2592248c33c3da7651 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010000-196912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010000-196912312100.nc + hashes: + binhash: e5d7bf499db9b4d5534ae2427f7df22b + md5: 327b1eed77221ef0fe833c28aa05dc76 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010000-197012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010000-197012312100.nc + hashes: + binhash: 72b3d82a9b35df57bf4f373c8b72eb90 + md5: 9737cabf0db1410ebabf1fdd72c58681 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010000-197112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010000-197112312100.nc + hashes: + binhash: 888c1ce34baa450dfa2c94e0b143d0f0 + md5: bf7d73dc00217cae88e90630d9157012 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010000-197212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010000-197212312100.nc + hashes: + binhash: 2ca41add6b0e696dff7865b14c56c298 + md5: fab9a9813ff0043f18a47f33946e6d58 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010000-197312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010000-197312312100.nc + hashes: + binhash: 3736883af0b99a7840563a724eef66a2 + md5: 57c646d56dd1597db17a82edc5264dd7 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010000-197412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010000-197412312100.nc + hashes: + binhash: 9eeb33d9ea2218760336842387339c6a + md5: d2cd179b4907dd420776441c60a0b318 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010000-197512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010000-197512312100.nc + hashes: + binhash: f9197052a9a5878705d2e73442a6897b + md5: ad77df4c881ba8b735b4717a8be06a50 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010000-197612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010000-197612312100.nc + hashes: + binhash: d7126fa6407f8896858d21529ec5113d + md5: cc899996b3fed7b3d7f24fdb0ca37e14 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010000-197712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010000-197712312100.nc + hashes: + binhash: 24e22f5575ccdfe6ff460a804f381cde + md5: 3d626733f1d78cbdcba7e39ce58c44cd +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010000-197812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010000-197812312100.nc + hashes: + binhash: 5d9de5d728d4677d3a86fa08e03bfb1c + md5: 04cbc4d0aa7945493c743c8a58926731 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010000-197912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010000-197912312100.nc + hashes: + binhash: 7869a76c3f76b879337478f9cd1fe456 + md5: 461d431b5aa5fb12ecba4a9c5f838333 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010000-198012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010000-198012312100.nc + hashes: + binhash: 5fc4e8c237a244be092144a878db5d67 + md5: ad3089eb53f182b5770e9ea3ef06c2ed +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010000-198112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010000-198112312100.nc + hashes: + binhash: 15158a6e619cb3d2417cc3671a1d2538 + md5: b1e6506a35510c80a45ea281ecc1bff6 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010000-198212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010000-198212312100.nc + hashes: + binhash: 06a9be275c4dd02ca5e18512cb342851 + md5: 46cce6585647138107f6b456952fb542 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010000-198312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010000-198312312100.nc + hashes: + binhash: 84c4923f1b1bafa1f5f4529ebe071aed + md5: 4183acca2a28192a25297f0db5d2c35a +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010000-198412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010000-198412312100.nc + hashes: + binhash: 0a6fd3df98a8ab4fb9e7252e1b1ea32f + md5: 9c2549dbd745d775286455053ac1e8ab +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010000-198512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010000-198512312100.nc + hashes: + binhash: dd03c8b456bd7cf74ac8668f7812106f + md5: 32cce7c48884a339ed506605795b5fa8 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010000-198612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010000-198612312100.nc + hashes: + binhash: c39ac8fcabf986cf3f434baf8653006e + md5: 5db7cebf3fdb857415a30b9067fa9857 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010000-198712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010000-198712312100.nc + hashes: + binhash: 1e7c861b26cca78ac1428c1d7a63aecd + md5: e67b8be77465f1f2ecd28643bb15814e +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010000-198812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010000-198812312100.nc + hashes: + binhash: c8728809528a5419e04d02b17cda58d6 + md5: d65b4154dc2c6a0ffcad1a0d213b4449 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010000-198912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010000-198912312100.nc + hashes: + binhash: c44c06061e0959e548b31200210a13e3 + md5: 1768c0299bbfb47d28f722beb55817fb +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010000-199012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010000-199012312100.nc + hashes: + binhash: 8e40816948da85ebdfd45fd278aa0a56 + md5: 26971fa56830a9478c005fe872168d96 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010000-199112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010000-199112312100.nc + hashes: + binhash: 945b5dc3be1669a495f202676c13cc94 + md5: ca774ab90645ae758242344aa2ceda51 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010000-199212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010000-199212312100.nc + hashes: + binhash: 25898ed771941705e9e39fef3b1526e2 + md5: aec5684fa40064770990aa4cf59196c6 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010000-199312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010000-199312312100.nc + hashes: + binhash: b269e990195b26fd858af3bf75e57aaf + md5: ef8f54fd29957c2f46a74299cd5d0d3e +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010000-199412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010000-199412312100.nc + hashes: + binhash: c0d1e4eb2fc34f2b8a8fa4321fe069f8 + md5: a19c141d7fdecabee042c61b95a3261a +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010000-199512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010000-199512312100.nc + hashes: + binhash: 9535bf64441bf5f5381b1f3a4773ff7e + md5: 898bd88c52e52683e39cf46aaf630a44 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010000-199612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010000-199612312100.nc + hashes: + binhash: 29de31897ad6fbfd98ee7bfef31c0e8c + md5: 3367fd683728470f14d901965eacc9d2 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010000-199712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010000-199712312100.nc + hashes: + binhash: afeb7dac9c8721619d3cfd7b8409f8f3 + md5: 3dee8e9b4f979cda4b3293291bf7a19e +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010000-199812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010000-199812312100.nc + hashes: + binhash: 658b2befc7bb5b2079c1c2e5840086ba + md5: 414505ed32fec63780e5597cdaa84af2 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010000-199912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010000-199912312100.nc + hashes: + binhash: 0881af5b4355aa9e8e641c1dfa41d917 + md5: 6a871bd643066c75098d1bfd8e2be516 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010000-200012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010000-200012312100.nc + hashes: + binhash: e9d4ec541895c3ef3d75ca002cd7cb87 + md5: e6f5a2d464e7e8d42c38872bec747e43 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010000-200112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010000-200112312100.nc + hashes: + binhash: 63860b47f0c39412987e1dd6c4e6d3ea + md5: 70ba42c7ddd063effece0f1c538cc4d3 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010000-200212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010000-200212312100.nc + hashes: + binhash: 4fa881b0ed072979c78100ad0bb0cea3 + md5: 69db71473a4f95e190dfad5a6c752aba +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010000-200312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010000-200312312100.nc + hashes: + binhash: 3daf7812e1788179e9eb25632a58bb9e + md5: 3f26996943804f7baaa4812f4b120698 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010000-200412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010000-200412312100.nc + hashes: + binhash: a8dd97639e2294a04f1bd247550688c6 + md5: d726065095779627eb3c0999bd72bf6a +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010000-200512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010000-200512312100.nc + hashes: + binhash: dea37e9a18f96acc6ced0b75f9eccdae + md5: 1de177eeac382af04a75e8bac83bc22a +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010000-200612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010000-200612312100.nc + hashes: + binhash: aae0053c0a608997ffde6ab9c5fb794f + md5: ae038af132a7f93a01fac1de4555138e +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010000-200712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010000-200712312100.nc + hashes: + binhash: 634b68539db549de57b63b2a8dbd2d87 + md5: d08aef1d4156caf1cd7a2e2b4f553adb +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010000-200812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010000-200812312100.nc + hashes: + binhash: 0967695625d41a74d78f7803b8debfff + md5: c00270a0e507cda1ce37a8efa888abd2 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010000-200912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010000-200912312100.nc + hashes: + binhash: 0503497305e121a152ddd5be59bda2e7 + md5: 7f9517e87f0eb0f608d530ee6f90ee07 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010000-201012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010000-201012312100.nc + hashes: + binhash: f7121f336dc86b321037dd233dbdafb1 + md5: bea1c282bac9e7924935f48110d3619f +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010000-201112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010000-201112312100.nc + hashes: + binhash: d08be7dc6aca3d3c14916f1f85a649cf + md5: 746fbce38ffadeb4f77554a2d5f22d85 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010000-201212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010000-201212312100.nc + hashes: + binhash: e690424788ca422d2cfab50c7e4bc9dd + md5: ff0b672e193dde85c442a869060fb142 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010000-201312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010000-201312312100.nc + hashes: + binhash: a0c25984f7cb8a4f1d5ed6daae5f3733 + md5: 07b448f73b90eb537f1eaa011c786ac0 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010000-201412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010000-201412312100.nc + hashes: + binhash: db01fd35a7a3afd084c775f84a2c1f8d + md5: 9b0fe715d29cfe695fc8b66a9330d8b3 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010000-201512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010000-201512312100.nc + hashes: + binhash: eb733c786de0e84b1a73b6b96459ca2c + md5: 57597dd3790132b7b4eabd4a0e5d2500 +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010000-201612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010000-201612312100.nc + hashes: + binhash: ce3893645da6ba75ca970f09e8c23255 + md5: 90a2a0588708021658d28bd8d8d34b8e +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010000-201712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010000-201712312100.nc + hashes: + binhash: 89c94f3d946cdf2607a34ce5e9031b71 + md5: eb38a728fecfc4364c5e63412e5095ce +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010000-201812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010000-201812312100.nc + hashes: + binhash: 96b0ac11f1acf93fe5a9bc6fb6e6f945 + md5: eef8f3a6ef9364558377b1642e6aceae +work/atmosphere/INPUT/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010000-201901052100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/huss/gr/v20190429/huss_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010000-201901052100.nc + hashes: + binhash: 852422f81fbea1c08b8c79d06ae62405 + md5: 7deb92fb03895597f00b4b71c8fd1e19 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19580101-19581231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19580101-19581231.nc + hashes: + binhash: f71ed73eab8a7dec6abf3e97e939877d + md5: 949e36fe8ce03610ca401a38f6ba4571 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19590101-19591231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19590101-19591231.nc + hashes: + binhash: 6d608b1f71abd6e17c73dd53fe75c249 + md5: a17753426cc026ce9c1bf91e191a9e0f +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19600101-19601231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19600101-19601231.nc + hashes: + binhash: b89e94768b2aa2e935c1f415abae61cd + md5: 47741b26140296b5fe1dcf8da93f92ca +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19610101-19611231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19610101-19611231.nc + hashes: + binhash: f20bb69324c9546646ac7de3b431f2e3 + md5: ac76e825daba89e4f93dba91ff9d60ed +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19620101-19621231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19620101-19621231.nc + hashes: + binhash: cf04bca7770755642f24031df29f3f81 + md5: a1ffd2bf855c3f0df7965135813fd2f4 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19630101-19631231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19630101-19631231.nc + hashes: + binhash: 7e56c31e3567af636d725eb617362c89 + md5: 7b347dfea0753116d6db02155b13507d +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19640101-19641231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19640101-19641231.nc + hashes: + binhash: d8de064364ed50a3d01cb87d4dfc3a72 + md5: 860504ebafc61dc9a64aa49b23a46a3b +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19650101-19651231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19650101-19651231.nc + hashes: + binhash: 0a65f65d3d7aa8fc241b4afd61f5a10f + md5: 5429415bcafeac17993e4a76b1b3311b +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19660101-19661231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19660101-19661231.nc + hashes: + binhash: 9488848d7b36eaaab9ef666ac699f2a2 + md5: 4d8c0b1e7fbf01e24d9c8a9854b46aaf +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19670101-19671231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19670101-19671231.nc + hashes: + binhash: ebfe2250bdc339f051f1f02afd1e7341 + md5: bb9f6108ccdb67314f7e2ac37ea2f4b2 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19680101-19681231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19680101-19681231.nc + hashes: + binhash: 12d240057dd2846571060e99b7a8f21b + md5: 0cab9be688b7878785b10cb7364abdbe +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19690101-19691231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19690101-19691231.nc + hashes: + binhash: 0d07199282ee717d709713832397ce83 + md5: 88cf7d0e26102a9cb8600024302e385d +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19700101-19701231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19700101-19701231.nc + hashes: + binhash: 863f980f7b587e6772de74a347ba4793 + md5: e409251eefb35e48c2bc7541ed9e7ec1 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19710101-19711231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19710101-19711231.nc + hashes: + binhash: 08a3c6b80a8e2ce3dae29795cbce0331 + md5: 197f85474a2d81af84ce62fbe3c5bbba +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19720101-19721231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19720101-19721231.nc + hashes: + binhash: 5c4cfbee6ef86f91fd57be96f0d47f77 + md5: 7c4d7a1afb735f522c0e6a0d59d3a685 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19730101-19731231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19730101-19731231.nc + hashes: + binhash: 0f730d3bd07dd77f61200ccce8a66430 + md5: 312e1965ef96bc2961f992e69cf2d3b7 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19740101-19741231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19740101-19741231.nc + hashes: + binhash: 784f4a478b60d5649ff22407b1f01569 + md5: fb2f9a522749e8c65f88a42e94dcd9f3 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19750101-19751231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19750101-19751231.nc + hashes: + binhash: ffffb2350aa3e5f105c9072a53badbd8 + md5: 23041f66d50f68dd808b7a255948796b +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19760101-19761231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19760101-19761231.nc + hashes: + binhash: bc7bbd0282803614970146ebbced3f14 + md5: bd483ce5f090dd03174a55057b327630 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19770101-19771231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19770101-19771231.nc + hashes: + binhash: 1f202af08656601dd9ae0fce5dc64f27 + md5: b9439812ca68f3c3821bd46e926caf9c +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19780101-19781231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19780101-19781231.nc + hashes: + binhash: 2a7a7be05cfe133fa0bffda66d0f51e1 + md5: 3604517b540d066f59d04cf3695e65a3 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19790101-19791231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19790101-19791231.nc + hashes: + binhash: bba7804cf7d4fecd471e51437e2a9eb9 + md5: d24347a1495b5917bd1ca3f175d3c541 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19800101-19801231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19800101-19801231.nc + hashes: + binhash: 2ee58a9ab4b222846eb7234d73fc672c + md5: f6a5902189c17c9ed3c47c0afdf335fb +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19810101-19811231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19810101-19811231.nc + hashes: + binhash: b104899413966bfe3c531502c17ea418 + md5: d236b39422557286bfd8be80fbe557e8 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19820101-19821231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19820101-19821231.nc + hashes: + binhash: e61e5229a9f84cf51de8b527fc2f8e9d + md5: dbf55285a711f5e8ff0e7c9b0fd8d54c +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19830101-19831231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19830101-19831231.nc + hashes: + binhash: 8610c6fd335c02bf94aeb880a2f29029 + md5: 9b2f763f0e65558e5dc884cf1b717c3d +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19840101-19841231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19840101-19841231.nc + hashes: + binhash: b493e4061674ba4e8190ad8bb451ba72 + md5: 106b694b2645eef1e9495573b65deae3 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19850101-19851231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19850101-19851231.nc + hashes: + binhash: 866dc42ccfd7d83fa55d7389d4834fe5 + md5: 12315304cc5ef5c13c8464289622f5c9 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19860101-19861231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19860101-19861231.nc + hashes: + binhash: 432d66acfe9de1532ddb99385c964800 + md5: 81aa4ddf1417bbc5674fced916b03781 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19870101-19871231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19870101-19871231.nc + hashes: + binhash: f43a9834498ff7284e1670409f2268be + md5: d16e139f1ad55578ac91bae20c6f7e92 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19880101-19881231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19880101-19881231.nc + hashes: + binhash: fa38e2f371e5e7549a75d5ad1de48296 + md5: 13d3834795cd5fce365c72aae89a6d13 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19890101-19891231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19890101-19891231.nc + hashes: + binhash: 4eb3ac7a21f03aeaf09053afcb5316e4 + md5: 7332b5d18beb2c8feaf66f069dc01766 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19900101-19901231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19900101-19901231.nc + hashes: + binhash: aa4e90118292ba852fa515729bf6b199 + md5: 535b359e5377a98879293fe461bd806b +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19910101-19911231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19910101-19911231.nc + hashes: + binhash: 06be663a8671c13e629d574e7a148cb9 + md5: 75056eece2176240a5d007da98712df6 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19920101-19921231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19920101-19921231.nc + hashes: + binhash: da72f937bde903dd2adfc7e25f547407 + md5: fc3f08bf7a7f6c53d881eabce6063d26 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19930101-19931231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19930101-19931231.nc + hashes: + binhash: b7c65931e83b615ac9a0d4f7ece5ea51 + md5: 8add64ca22e1653a46d3968ba121bba4 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19940101-19941231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19940101-19941231.nc + hashes: + binhash: a9baf7cfb234f7cd4c07d5b08118ef54 + md5: 6200f17023d79f6fa99ba477bc0dc03e +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19950101-19951231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19950101-19951231.nc + hashes: + binhash: 3fb00cf6ff4cd9d03f2608643b848c5c + md5: 0da89ad062a69d5f06f590063d9519cf +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19960101-19961231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19960101-19961231.nc + hashes: + binhash: 1f805e7e21c1326fedca189b18508995 + md5: 2b073e70c44099322e030b505afb5d3b +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19970101-19971231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19970101-19971231.nc + hashes: + binhash: ce002c9fb883eec214fffeb12c5dd99f + md5: cc18791c56aafb96de3d851b537563cd +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19980101-19981231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19980101-19981231.nc + hashes: + binhash: bd71dbe0ee4abd1fe909cec59950e63b + md5: c2bf8d439ea68b8e838076a043a5afb1 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19990101-19991231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_19990101-19991231.nc + hashes: + binhash: b3baff0ab164f246db16c84bf4f6a1bd + md5: 537cfa578e83acf9f351b0a730842954 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20000101-20001231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20000101-20001231.nc + hashes: + binhash: ad031e00ae7453e9aa94c50202542cc5 + md5: 28249df2d42df1e1d0673635214a6636 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20010101-20011231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20010101-20011231.nc + hashes: + binhash: 0df754713311bdad984a4e183ea81e89 + md5: 3cfb6ef3eab197c8165334b27ba948ea +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20020101-20021231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20020101-20021231.nc + hashes: + binhash: e27ee5eafff3f8c4b6f243314be1cb86 + md5: e3edf78535f42a7de5a82a68f8f18728 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20030101-20031231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20030101-20031231.nc + hashes: + binhash: 55b445fdb18445dd0a18698d99701f6d + md5: 4b926a3c0b37bb255260fd8c163adddc +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20040101-20041231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20040101-20041231.nc + hashes: + binhash: 6a2c182ca73b0d3bacb14e30ae21bd6c + md5: b4feeb55989e941f11f3ba105f1856ef +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20050101-20051231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20050101-20051231.nc + hashes: + binhash: 318f2a4521e4e679451c520255d3f367 + md5: 7f5ea8342a4d52bf23bdd8f3ff649a53 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20060101-20061231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20060101-20061231.nc + hashes: + binhash: 38cb4c78cf73abc97ce0492ecc499a48 + md5: 2177257f79e83cf87ca7711e526e16bb +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20070101-20071231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20070101-20071231.nc + hashes: + binhash: c45ee38ae1e56d358fb921fc8be1dbed + md5: e787d5b90fab620168fe89aacff8df26 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20080101-20081231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20080101-20081231.nc + hashes: + binhash: 0a60d9e38ec010fe8ba6b7a66c5f2174 + md5: a66ae80dc86c91fa474ed3ac2200b756 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20090101-20091231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20090101-20091231.nc + hashes: + binhash: 3a3a6feab01d411b8376713b82ffc8fe + md5: 2993df42849c86658ab347e557a631dc +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20100101-20101231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20100101-20101231.nc + hashes: + binhash: 5f78ade36e35b6e91cf302bbe2cb2140 + md5: c7b32a41c33c295679f35219a8bdfd04 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20110101-20111231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20110101-20111231.nc + hashes: + binhash: 8956e3b5bb9c456f34ae2a63c11ce240 + md5: b3503773f6ca53ed4dc8ce030afee29d +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20120101-20121231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20120101-20121231.nc + hashes: + binhash: d2e5e7e3ecc9bcfe2d39fd5e447a5679 + md5: e02ef5d2d60c9ecf30ce8b6e52a8194d +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20130101-20131231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20130101-20131231.nc + hashes: + binhash: d30a0db245abbe4bf99a200b6b913ef4 + md5: 79d5fd502ef94c9ee9cff298ebbb3b33 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20140101-20141231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20140101-20141231.nc + hashes: + binhash: 1adcfa5ba3d774a5ad10f149db1c2553 + md5: 376eb5643c7abb3bcd39c41269133fa5 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20150101-20151231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20150101-20151231.nc + hashes: + binhash: 51e387f5b6dcb122c5408743396312bd + md5: 1b1e374608eafd02d3b5d35218258e3c +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20160101-20161231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20160101-20161231.nc + hashes: + binhash: 063f4555fb3a0fb7083f5de99cd290df + md5: c3d1b0380de716d9b6ddc81b74569a18 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20170101-20171231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20170101-20171231.nc + hashes: + binhash: d5cb64bcf7e7af3e7ce266a3ff54dae2 + md5: 281c4e72a67e3233d28697cad1f12c27 +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20180101-20181231.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20180101-20181231.nc + hashes: + binhash: 910fc7e46ee76f5252cd8dd28aba6385 + md5: ac1e116b5fa31000c51b629d882fb4ab +work/atmosphere/INPUT/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20190101-20190105.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/landIce/day/licalvf/gr/v20190429/licalvf_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_20190101-20190105.nc + hashes: + binhash: b695aa7c1603eec26fe93674bf2ccfe5 + md5: 7d09d06ec59b71f0dffe288f7507b06d +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010130-195812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010130-195812312230.nc + hashes: + binhash: f701d8a929e9d872e8e6a35e3a8e32ec + md5: 3f6f6aee303a519cb9f26e8fe24119e2 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010130-195912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010130-195912312230.nc + hashes: + binhash: 14759e98444f39be594d5b9f0f32a911 + md5: a9a4597ad0adaa89f198963ea90f34a9 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010130-196012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010130-196012312230.nc + hashes: + binhash: 1701d31946ec375e31f28a5b7ed38aa2 + md5: 7a2aa25a232774d8b646a8b5f1bf521c +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010130-196112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010130-196112312230.nc + hashes: + binhash: 4b65154310676a09f80fc1b828dd665e + md5: a91756c6fe5df99fa9e1b61c2dbc1e04 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010130-196212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010130-196212312230.nc + hashes: + binhash: 850629a9b2590c9c4ecf0a46ae9db257 + md5: 0295ed6e67b4a8e6a6e347d98d1e7db5 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010130-196312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010130-196312312230.nc + hashes: + binhash: 5e14ebe93ad746fdf7a3573dbba43f14 + md5: e8a28b5429cd92a07ca118072abf58b9 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010130-196412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010130-196412312230.nc + hashes: + binhash: b617e4ff5473d52209433b85d1e7c3cb + md5: 91c0346084acd33313d20a47e0a72437 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010130-196512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010130-196512312230.nc + hashes: + binhash: cb793dcf5a236ecf9cbf4b2336d36a82 + md5: 86f6d2e84bf943ecd62ca6f5400e0bee +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010130-196612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010130-196612312230.nc + hashes: + binhash: 812cba7c7eafbb7ec8f11069fdec45bb + md5: af80d1310ad47af021df2ce21a2319ca +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010130-196712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010130-196712312230.nc + hashes: + binhash: 849e08cc906f85bb8f73085bbcf8ae75 + md5: 1f312898e87abf4fa63ff7a853e23f21 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010130-196812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010130-196812312230.nc + hashes: + binhash: 3dafee65f1310fc87cd42a418f848ecb + md5: f2f1d827ed8ebe2a2c391cedfaca1c44 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010130-196912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010130-196912312230.nc + hashes: + binhash: 72be3ddabd16803389e5008989c31f2c + md5: d18ec9969d69745e6aabc494c3192f36 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010130-197012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010130-197012312230.nc + hashes: + binhash: 9e2d36865e2ad1861988a94bf59dbc95 + md5: 902760ddd88c6b9a2fbd4102bd5d448a +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010130-197112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010130-197112312230.nc + hashes: + binhash: 438e15ffebb6bcaf56f5188894718948 + md5: 8b930738bad6cd631454369d15c578be +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010130-197212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010130-197212312230.nc + hashes: + binhash: 80d1f094f1b10a5d98e0ddd463efb66e + md5: e7cb5a154c716677748fdb33892293ae +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010130-197312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010130-197312312230.nc + hashes: + binhash: a0588af375dccd89d0e9612a096f1805 + md5: abb00a05f8c9fd33af079b31a4f22a34 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010130-197412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010130-197412312230.nc + hashes: + binhash: 58420e09bd80cb52a73397e2ed6865ca + md5: 3423f234b7906b10c0081e45dc733b92 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010130-197512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010130-197512312230.nc + hashes: + binhash: 3790ee2a9aa6c3efc967b2ecc9ef066b + md5: ffb9aa9228fb596ec85a4e3e2c34075d +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010130-197612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010130-197612312230.nc + hashes: + binhash: 2851842f4f7da1dea4c022e7cd33ebf8 + md5: 2c829cfd0dcd5d8327e462752a29aa76 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010130-197712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010130-197712312230.nc + hashes: + binhash: 0c91677931b57bfaf3a493508b6010f6 + md5: 371b181c416171637d8df4bd2c539e4e +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010130-197812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010130-197812312230.nc + hashes: + binhash: 415c0cef76caddfd9583159650531c4a + md5: 61f52580b47b3d54ad614b583f1c0fdc +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010130-197912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010130-197912312230.nc + hashes: + binhash: 6fbf4d70b989f0d5e917992c5dc66e92 + md5: 37bda0f852c24473c7bc5c581d0e0a6e +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010130-198012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010130-198012312230.nc + hashes: + binhash: cc179f4ddbbf5e8230ab430e36d8b911 + md5: a8e5985c9cc7d29e1f39fd28966a1086 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010130-198112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010130-198112312230.nc + hashes: + binhash: afa4397461001e45225add5981fac73a + md5: 03f843f08d038e64d4fec64b61a8742c +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010130-198212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010130-198212312230.nc + hashes: + binhash: 52e94de1e54ec773fcf53eee304b8f4b + md5: 481dd7dff70e0b007d93126de37e5189 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010130-198312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010130-198312312230.nc + hashes: + binhash: 2cb222f313fa102b20a606f7caa28e27 + md5: b92ab8b4d7bd75cab6d901fb11cca3cc +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010130-198412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010130-198412312230.nc + hashes: + binhash: 14ffc9aa275a7dbc54f39c676ba15b05 + md5: d8f23464ce2fca4728d1cfe1a73b6466 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010130-198512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010130-198512312230.nc + hashes: + binhash: 50e04924a01b161db307ef7754c3d2aa + md5: 42352c141dda42ff9566251428dbf00b +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010130-198612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010130-198612312230.nc + hashes: + binhash: 1f26f833f5d237a3ba53ca75be8f5dbb + md5: d8cc1a0670da8b5e46fae76390ea2963 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010130-198712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010130-198712312230.nc + hashes: + binhash: 700c695af43edfa9a531e6b796954b81 + md5: a1bd3d82b733b6a5d27033cba9bb165f +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010130-198812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010130-198812312230.nc + hashes: + binhash: c5a040a0413c33aa9f56e8240f49e573 + md5: bd2a5f918ce678a28eb31f9fbdbde0a1 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010130-198912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010130-198912312230.nc + hashes: + binhash: 648928efeb98a452ea045ca47459fc62 + md5: 140a14c584fd7a20966394a2b1c19cd6 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010130-199012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010130-199012312230.nc + hashes: + binhash: 60773f412faac74405659393e09a9b65 + md5: 345e7f89a92c43f0abaa8b4abb09c378 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010130-199112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010130-199112312230.nc + hashes: + binhash: 0f2f9f2606cb54e90d39b7b28689de27 + md5: 398d7f86905eaac94ae4ba62fa469998 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010130-199212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010130-199212312230.nc + hashes: + binhash: b19228dfbd0628889c353f8c5f5788e2 + md5: 2c4e9f884e015a586e0b393e56e49486 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010130-199312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010130-199312312230.nc + hashes: + binhash: cf9dc6c99bc25642a88b551f609a31fb + md5: 7dcf4e7f8d75ef6faddb45b10c35e959 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010130-199412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010130-199412312230.nc + hashes: + binhash: fbf9efa4aa45b44f1ccb8f004ee48c3a + md5: 25f1dcdb721957f0cdce086958eaafb8 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010130-199512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010130-199512312230.nc + hashes: + binhash: 52b6c209aab52e169fe372b95610dae0 + md5: 252822bdc5cee8246aa9ae1c1611156d +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010130-199612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010130-199612312230.nc + hashes: + binhash: 6907d30d4b693f7109498dfbe4682bb5 + md5: ab492e6589a1f48acbc478c49ea35106 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010130-199712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010130-199712312230.nc + hashes: + binhash: cf7567986f91d83cab988f2cc543bae4 + md5: edbed38335cb7252e9332ae73e38dc20 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010130-199812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010130-199812312230.nc + hashes: + binhash: 663bd1ae2325fb84295e6575704ffa03 + md5: a4062b75d3ef7af65778ea80ac411614 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010130-199912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010130-199912312230.nc + hashes: + binhash: cedae1344d69e3fb79d9407846c96869 + md5: 7562adc8e07682f9913e086d3989465f +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010130-200012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010130-200012312230.nc + hashes: + binhash: 3d079a1225b2aa31368ac1d07ea4b06e + md5: d97425230a67abef3e4902115d041b50 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010130-200112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010130-200112312230.nc + hashes: + binhash: 381bca07fc9649ef4beb8f02efcecf2e + md5: e5a34792fbef08db931d8156f9cba7aa +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010130-200212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010130-200212312230.nc + hashes: + binhash: c3df2a0db97680e86e0f39488d6a707d + md5: 77f1fbba939f3c96e1635891562bfad4 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010130-200312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010130-200312312230.nc + hashes: + binhash: d3302cdc433dc538a4dbc2715ddea18b + md5: f46e3f30b7e78ea731cd338f6e6754e8 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010130-200412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010130-200412312230.nc + hashes: + binhash: b38c1a22d95c36caa64a4cf5b7aad412 + md5: 0b4e8bd542de87d915ca39e687e8a76b +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010130-200512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010130-200512312230.nc + hashes: + binhash: 96dbcd6e2158f11d8a146fe48c2fb18c + md5: b42d6540f6cb80328f548c4619fdda49 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010130-200612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010130-200612312230.nc + hashes: + binhash: 1c27bf6c47f2938f918f1b9ff00d2242 + md5: 0fc76ff32ec2202143c5d7d0899efd76 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010130-200712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010130-200712312230.nc + hashes: + binhash: fbcec8b2210cc819af75b82453c175a8 + md5: c7fe9075a3f7fb0f872d1a9308c913ae +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010130-200812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010130-200812312230.nc + hashes: + binhash: 0571d6eeca45216e3ce7d8636dd28108 + md5: 4e9f8b83bb1eaf5bfc2aebd4e87f75c2 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010130-200912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010130-200912312230.nc + hashes: + binhash: cb8022bfb73fdf86ca601c999c885c0f + md5: 2ff4c12c32ec4c834d3d78e50511bf21 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010130-201012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010130-201012312230.nc + hashes: + binhash: c56688cffae83fb1dad166c086a8bc4e + md5: 86a84337ad40021bf96b4c341fe20336 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010130-201112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010130-201112312230.nc + hashes: + binhash: fe764e904f3214c05993ef1ad91d19cf + md5: a167cd4a6ecb170da5c5b73ad99bc0ab +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010130-201212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010130-201212312230.nc + hashes: + binhash: d47b831eeee082ff172870ca07760e44 + md5: 9174befbef5387e24adb2dea08baaf5c +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010130-201312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010130-201312312230.nc + hashes: + binhash: 99ea3646a7eb892aaab3044f7be58916 + md5: 434ee3d9640559e7af1c730207042874 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010130-201412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010130-201412312230.nc + hashes: + binhash: 546e899a61f87b66c00a81c17611cfd4 + md5: 9aa9807e6fa5b3e477ed67481d951c7d +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010130-201512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010130-201512312230.nc + hashes: + binhash: 59da05c3481e985de456f74bb5654d01 + md5: b5ae200e69a5adfa0e1ec53faa67eed7 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010130-201612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010130-201612312230.nc + hashes: + binhash: 655e4cfa898749910b200911f9604772 + md5: d5b518b55e78e4f9d2b712fde5d9137f +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010130-201712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010130-201712312230.nc + hashes: + binhash: 2a66d533d1c2eb915a52f61566f62d50 + md5: f712885f975345c132bef19e7b442b73 +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010130-201812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010130-201812312230.nc + hashes: + binhash: b02e9ede281a1f05655f09571783f525 + md5: a4804209ea08bad0bfe9684ebc4f117f +work/atmosphere/INPUT/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010130-201901052230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prra/gr/v20190429/prra_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010130-201901052230.nc + hashes: + binhash: 7ea21535591398f3db11042de15d7998 + md5: 785d43f30f818269662474b27eace1f0 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010130-195812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010130-195812312230.nc + hashes: + binhash: bab117ad0617cc882282b15fa90da109 + md5: 54bfd60c31fb5607937ea4bc6121c24a +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010130-195912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010130-195912312230.nc + hashes: + binhash: 3e2c0123eccc325518cdd62fd84e1a7c + md5: 6df9e38fb96b876264f1161163187abc +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010130-196012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010130-196012312230.nc + hashes: + binhash: 04a2454f79633d494ba9e3286dfdd2b5 + md5: f96ec58ea350cfe148f04faf6a61ce9d +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010130-196112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010130-196112312230.nc + hashes: + binhash: 7d27d456f55b5b88f87d5cfa9453fb98 + md5: 1c4901809275164f84b2452cd6a10221 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010130-196212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010130-196212312230.nc + hashes: + binhash: 6a10809c88da81bde792c7aabdb6b28b + md5: 49f34b40be3f372bfe7b3cbc5e80fb83 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010130-196312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010130-196312312230.nc + hashes: + binhash: a334eeb208baa37d7aa02ed7a700fca3 + md5: 700657464ed28bedc6b023d66c9a6c73 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010130-196412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010130-196412312230.nc + hashes: + binhash: 61125bd94975ec14f0260b6669a2b269 + md5: 707b63527d1038e1928f8b8fde952031 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010130-196512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010130-196512312230.nc + hashes: + binhash: 41c82b995d75af7ad5007f455ef65e53 + md5: 5787b6fd1aafbc1f57dd89f0e455d5ca +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010130-196612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010130-196612312230.nc + hashes: + binhash: 8532c804f05c71d77cea2177330af8ab + md5: c978849e7f471b1ce9bfcc2759c75cc5 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010130-196712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010130-196712312230.nc + hashes: + binhash: 9a9056c12ae79c04969b1d6de21ad0ba + md5: b214ae593e13018a297649ffee488f94 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010130-196812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010130-196812312230.nc + hashes: + binhash: 64e9e9224218c9b7a741c5bce2b6d8ec + md5: 189f9a8cd76dbef3e044c6e3e344e86f +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010130-196912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010130-196912312230.nc + hashes: + binhash: f63c32efc64e4744986c2ba126220cd3 + md5: 0e1e7f6e73e6ef43f40b3b1d789cac35 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010130-197012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010130-197012312230.nc + hashes: + binhash: d3457f692bba42e79c41eade8afab74f + md5: bb5ecefdcdbf2c87f3c2633720893636 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010130-197112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010130-197112312230.nc + hashes: + binhash: 30423215e7b1e493f16eb6265b8c71ca + md5: 9c57323544079e4aeb774db9224251a6 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010130-197212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010130-197212312230.nc + hashes: + binhash: a6573c85a8c4d172e6aa09890b506060 + md5: 50bb924c3f629636597a3c556bbef7ec +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010130-197312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010130-197312312230.nc + hashes: + binhash: e0197866a8059dc94762ed60669444dd + md5: d64e78143b551f916bbcd47cf1dcf878 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010130-197412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010130-197412312230.nc + hashes: + binhash: 50c61202b77f34c5059e4994408e54cd + md5: f9468505d1a486b32cc158776891ef9f +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010130-197512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010130-197512312230.nc + hashes: + binhash: 412d615eda99f68ae1923747878afcf0 + md5: 77436c004fefe7330115057239852061 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010130-197612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010130-197612312230.nc + hashes: + binhash: ae4ae5b005bdd65770ed0cfdfa6b0aa6 + md5: d5da06cf728a2691bc13ad4212f983b3 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010130-197712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010130-197712312230.nc + hashes: + binhash: 2d158d0b88df1fd19f87206589baed56 + md5: 8310220b8af6e2b3ed1e8cb55f995e09 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010130-197812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010130-197812312230.nc + hashes: + binhash: 0b556cc834d8b31f797a3bb6ab6c489b + md5: 990645fb88050c9fc2bb4bc7bbbbd8cb +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010130-197912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010130-197912312230.nc + hashes: + binhash: 98c772801d09ab10f52b3ef917c2a087 + md5: b8c02220674dffb996f3a342d29fb43f +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010130-198012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010130-198012312230.nc + hashes: + binhash: 50ccbf9b6f54c77825a9a34745ac0096 + md5: b08d16fa6fd2b93e79bdc3cb5757e894 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010130-198112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010130-198112312230.nc + hashes: + binhash: a0ed5cc6ffd1a40d3923f2295f93dd57 + md5: d30cf6e2c764dbbc556984c3ce2c9569 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010130-198212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010130-198212312230.nc + hashes: + binhash: 458ffdd36b9c68c23648d66950e80b41 + md5: 9b96a39fa37b07e190c0ffa6e793405c +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010130-198312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010130-198312312230.nc + hashes: + binhash: 51d6cb9ffc5065b372e6cb22d2fc49be + md5: 0156c5f0e2050fab67b42c1d7830d517 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010130-198412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010130-198412312230.nc + hashes: + binhash: a03de8b3df79ff2d1725c48ec7c7afbe + md5: fd0135cb16b3ae2a7c8af65d3ed10854 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010130-198512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010130-198512312230.nc + hashes: + binhash: 5a3e4079c3bc6e4994b3ab50cad6dfec + md5: d44ae3fd91de2d8f90d3650963cad8b8 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010130-198612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010130-198612312230.nc + hashes: + binhash: 54f1aefc5222adab397bb241680a6a7b + md5: ac7d25761ccb8339b2baf4c3000c5def +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010130-198712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010130-198712312230.nc + hashes: + binhash: 0d0d0361b007075e312ec2cdb9513376 + md5: 57fc8ff3b73a53f161192047822079ac +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010130-198812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010130-198812312230.nc + hashes: + binhash: ad9c17fe7d137a2265c74b5e087a2226 + md5: b8df71ef0224d644c9afde1990b28262 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010130-198912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010130-198912312230.nc + hashes: + binhash: d68d0eed6fa31e7643b2650b98b68e9a + md5: 808cb9c275b0a135088ddea017ca9891 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010130-199012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010130-199012312230.nc + hashes: + binhash: 508308df01527f766095730289c1db85 + md5: 48f55a796ca4c5eecc541df2024d53c5 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010130-199112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010130-199112312230.nc + hashes: + binhash: b97bf95471858c9a89a0792008bd0528 + md5: 96aa6cfbdb8acc603f079c8d3070883d +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010130-199212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010130-199212312230.nc + hashes: + binhash: 7e08c8271e8c114cc503b38c7ca58f1b + md5: 4f6f61e03e35cbcb27fa669fd933aeed +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010130-199312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010130-199312312230.nc + hashes: + binhash: f55576ee356b41b569806d8bf52b6ee2 + md5: 424946f3c380509371c29ca65dba8aab +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010130-199412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010130-199412312230.nc + hashes: + binhash: 03b718f4bb201ce8a1b8dfa255f5f9fe + md5: fd0daac5ddcd1d598bf37572994acb44 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010130-199512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010130-199512312230.nc + hashes: + binhash: cfd9a8f6d09217681c6fd72ac02673f8 + md5: 7b97f29974e6e403d87c539e1752e5e9 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010130-199612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010130-199612312230.nc + hashes: + binhash: d5759872cdb385ae73a141d731af3fa7 + md5: 193559dac6c5942eaff4d79962a4cec3 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010130-199712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010130-199712312230.nc + hashes: + binhash: 565e3ea83ef054cd20a02def1d8502e6 + md5: c5e8bc779eaaccecbd99d821a0bde585 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010130-199812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010130-199812312230.nc + hashes: + binhash: 0dae97c10c5e5f42ba58fbf0fc304f2b + md5: b7d5729633e09e8ab123b7eb093a8fe0 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010130-199912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010130-199912312230.nc + hashes: + binhash: 5bbd163b4d79a53118495b1661311083 + md5: a47e0e800a1d3f50335049bdd7bfe70d +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010130-200012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010130-200012312230.nc + hashes: + binhash: 75294d4e0c60e8b3956e8316f8bfff6a + md5: 4de29b0016f57f466bb571a7b77f2f67 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010130-200112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010130-200112312230.nc + hashes: + binhash: 675fe662c554a19b6dbc0bf5e31b48d3 + md5: 494ef4e58e58af7eb8cc5c98be901c64 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010130-200212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010130-200212312230.nc + hashes: + binhash: dccb089a03f25ea9e26a4dd75b297922 + md5: 9cc4e57786e88e195b591407450a38ca +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010130-200312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010130-200312312230.nc + hashes: + binhash: dc996fd55b019d4108360b88847e4b73 + md5: 0871f1973c023a4826d306f76b561c58 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010130-200412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010130-200412312230.nc + hashes: + binhash: ab2d27524b2fccb946b4b5d276e86dba + md5: f7acab0b26f3c0ebdc3fcef010bece37 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010130-200512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010130-200512312230.nc + hashes: + binhash: 686efa7b766273eb71aa4172b1b5f6ab + md5: af15d031a7c9da4f87dc555803196437 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010130-200612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010130-200612312230.nc + hashes: + binhash: 6edccb29ecd60fd34e1e735932277b47 + md5: eb6b3285453417cba476dba57a1b0025 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010130-200712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010130-200712312230.nc + hashes: + binhash: 4f1f9eb6c9bac1f034953b05588914f4 + md5: 4dc013a7ab47d22f7712b25c53cd7b7f +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010130-200812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010130-200812312230.nc + hashes: + binhash: d3719ca06eca0e145ed6aa0a7bca3fcc + md5: 4332bca60bc0ef67f956a5e64525393a +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010130-200912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010130-200912312230.nc + hashes: + binhash: 2a54071f6b7f035719246b91616a742a + md5: 35e71da581ec64e7cff204dde3b4cae5 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010130-201012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010130-201012312230.nc + hashes: + binhash: c856241259faecbf2a2fd8fcbe71cec0 + md5: e4afd887c3e138f852bcadee8b158031 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010130-201112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010130-201112312230.nc + hashes: + binhash: cbb02c7fed89f6e7da0489bb5277264d + md5: 5732b492928d45292447c52071e633ef +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010130-201212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010130-201212312230.nc + hashes: + binhash: bc3a370c607397686ee6361190a735c4 + md5: 4d0fa832d74153d325dd616f03afb3df +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010130-201312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010130-201312312230.nc + hashes: + binhash: e6cd04933d87eaa4496c9bd74dec20fb + md5: 4e865456232964e67ae98821df01e234 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010130-201412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010130-201412312230.nc + hashes: + binhash: 7310b3e564a0d42b201d3786211f1a44 + md5: 157c41346834686a4e85ac88f9447370 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010130-201512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010130-201512312230.nc + hashes: + binhash: 59ee00da9ab066b6e09d817075ae111c + md5: 7f213a9e2b1f0b0415335e3a61926b2b +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010130-201612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010130-201612312230.nc + hashes: + binhash: e5ca75247a84bda1f0337e659b6680f5 + md5: 0956886b71a2a4af3603a1a10926a1c9 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010130-201712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010130-201712312230.nc + hashes: + binhash: 4a21f5663b43da3d0e40e20b4ad94ea9 + md5: 9136542a7a7e3b0bc91c2bad5fea29c3 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010130-201812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010130-201812312230.nc + hashes: + binhash: fbcd39aa88ebb6cba35d5e9250decfef + md5: a341e33aa7036c3098243210af9c3fd4 +work/atmosphere/INPUT/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010130-201901052230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/prsn/gr/v20190429/prsn_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010130-201901052230.nc + hashes: + binhash: 158307894d644602f5be27121f78eaac + md5: e115f1138748febed28760e9cf56a147 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010000-195812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010000-195812312100.nc + hashes: + binhash: 5b51f30fbb735e985d43673f577cb598 + md5: aee934eae430d5cc3df30f24131f88df +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010000-195912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010000-195912312100.nc + hashes: + binhash: 8c5097ee2891b2353b38a388c53f8439 + md5: 9bd86a112ba04c8890a960e8f4cb270d +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010000-196012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010000-196012312100.nc + hashes: + binhash: 0a1c8e3b377097ac988de1cde9517c7c + md5: c7feac356e8d7f743439b946ff1cb07a +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010000-196112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010000-196112312100.nc + hashes: + binhash: d18b1f22befe092b274899bc55649c48 + md5: c55bd9c33c6a066b4b54936640a901ed +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010000-196212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010000-196212312100.nc + hashes: + binhash: d08277f4dbc6e0114ebf7047ea96694a + md5: 2da97ee1059702628d0d85f842446c8a +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010000-196312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010000-196312312100.nc + hashes: + binhash: 05deb1d7b493de2027bea61844867cb3 + md5: 6f4d2e33a787296458711ed2bf11dc8f +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010000-196412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010000-196412312100.nc + hashes: + binhash: a17eb4e3f29154eae09c1304426afccc + md5: 3d9ee2245685d167ab3a3943972301bd +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010000-196512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010000-196512312100.nc + hashes: + binhash: 5ed8fece232853f6b40319beb9a4ec3a + md5: 498476fe2604514e9a6de1af3af82972 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010000-196612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010000-196612312100.nc + hashes: + binhash: b9f347d8c4b9b934080f07e936aa58c8 + md5: 5ce61950c7cc9f6f04b5180b081a268f +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010000-196712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010000-196712312100.nc + hashes: + binhash: 0052707aa4ac552532657b9eaec3b4d0 + md5: bed5eac61da93d9f78d34c7d736c426b +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010000-196812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010000-196812312100.nc + hashes: + binhash: d0026401579e01b1ed390b67db1f9762 + md5: d35e9c1e7cec1bada2455f4a6f57fcfe +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010000-196912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010000-196912312100.nc + hashes: + binhash: 8dd27acece3323db8d41a913d19f9de8 + md5: 58e10aae45cd33be7e54b233b14cf665 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010000-197012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010000-197012312100.nc + hashes: + binhash: 0653c5426b9ba94890137a22b6cfef10 + md5: 289d08c408fc559dd74d369b220c3b79 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010000-197112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010000-197112312100.nc + hashes: + binhash: cc7419d380fc12228f7a799f6465afa1 + md5: e96243f61f405f02507ed247b7b8aaa6 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010000-197212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010000-197212312100.nc + hashes: + binhash: 03ea788a242706bfe132091d6909c189 + md5: 1586e6c9abb7717a35d6efe40799b489 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010000-197312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010000-197312312100.nc + hashes: + binhash: ade850576cdff3682126ffc252cabd28 + md5: f322cd782cbedc02a83a3a350b0274c8 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010000-197412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010000-197412312100.nc + hashes: + binhash: 3f6ab488dae3e026366bbc5366e3cdfe + md5: 94a7869d591c2e26adb331a3122c1243 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010000-197512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010000-197512312100.nc + hashes: + binhash: 57c1c70f5c648419f5a08bb4e5cd70f7 + md5: 10ffdcbd4bf3017d9165fe420fee5682 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010000-197612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010000-197612312100.nc + hashes: + binhash: 0735cac9c3357bae29f624e62f399632 + md5: 103cc25c968a103e0c045d16a38d5d65 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010000-197712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010000-197712312100.nc + hashes: + binhash: c462602627f79f6f73390ed65d8e2fd1 + md5: fe41ca934da2fef5219dfb6b6a037a7c +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010000-197812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010000-197812312100.nc + hashes: + binhash: 4d9b149cf27ac11751f79f961ae3aa9b + md5: a6c7139e67ecc7ceb97cec2dff764b20 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010000-197912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010000-197912312100.nc + hashes: + binhash: d1d51a0f79dcee37b9450d80fe04977d + md5: bb349c344d8786c190f826169f55f91a +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010000-198012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010000-198012312100.nc + hashes: + binhash: 26310110a155fd3775eacfed3094b629 + md5: de3e23caa7d74ffe6ce697a30acdc812 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010000-198112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010000-198112312100.nc + hashes: + binhash: db200ce665b7fbbf1b3f1b8d717f0d30 + md5: 05e7a75197021688c0291ab9c50f4790 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010000-198212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010000-198212312100.nc + hashes: + binhash: 6a2020c3e207dd032e1ae253753491fb + md5: a67bebde9113447ac6f0236d99002368 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010000-198312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010000-198312312100.nc + hashes: + binhash: 8ef707fe2590a421ec83ede738bdec1e + md5: 010547bd252b4b3a5f64f6f911f750d9 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010000-198412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010000-198412312100.nc + hashes: + binhash: 87d06394bb3774f204e6eeb4a693ac1f + md5: 77a2e6fe0c621c4e7a8b3a0778c3aeac +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010000-198512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010000-198512312100.nc + hashes: + binhash: ffac44a5ba5b60e8d98be0ca6acc73cb + md5: 7f618f4c674327a8fe6a65f0f7531ba3 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010000-198612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010000-198612312100.nc + hashes: + binhash: fe96bd99158e16d078b5359ae0fe078b + md5: 396305cc8f71ff51eedef278a1cfe667 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010000-198712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010000-198712312100.nc + hashes: + binhash: e0822133fa2dbbd259bcd44f6743ae28 + md5: c636c8a6d62210c3ec6393e843ef4051 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010000-198812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010000-198812312100.nc + hashes: + binhash: 63aa419f82029f1cc9da0ee1ae99f68f + md5: 2c6ec3f851542324a5323667b1a857f1 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010000-198912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010000-198912312100.nc + hashes: + binhash: 77258c7ba9a7e7f0a87050bb62551d6b + md5: 980b6d36f862abe041d9ce241f23b63f +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010000-199012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010000-199012312100.nc + hashes: + binhash: 744d07b7bafc30de28b7c739c8d1a237 + md5: 6995482777cf21058e5af348f199be3b +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010000-199112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010000-199112312100.nc + hashes: + binhash: 99e2c12b1583a2da2a621f6c10342be8 + md5: d0db757f7886cccddeca5b9e49562c27 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010000-199212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010000-199212312100.nc + hashes: + binhash: 33da828b0d900956113f81ba75fed136 + md5: 9934239a93ce017cc9e17d36cbd10170 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010000-199312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010000-199312312100.nc + hashes: + binhash: 37e31008432e915df74655fd75cb1bea + md5: acc074b614958c0c453bf15b81a41c10 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010000-199412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010000-199412312100.nc + hashes: + binhash: b03e5b8cefec0273492b8b9c53f5adfd + md5: a8e58eedd7f4674e10042b9157d66be5 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010000-199512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010000-199512312100.nc + hashes: + binhash: 4d12d209992d8a6350b61c5bcbc94cac + md5: e0ef17abfd646cf6d13d1da9dc68a3d1 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010000-199612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010000-199612312100.nc + hashes: + binhash: 21d46a9dc74f72f4e2bfc94e5b70e6ff + md5: fd0340bff06a581e07a43cbd46d62720 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010000-199712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010000-199712312100.nc + hashes: + binhash: c8cfc60cd0bdd23b9dabbe4036676fb3 + md5: edce9f1158d81c6a113050fa8b573cd9 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010000-199812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010000-199812312100.nc + hashes: + binhash: 3402a983b18bbf8c62df0515cbc31729 + md5: 9ce4c731e436edc2df22d03d00347e9d +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010000-199912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010000-199912312100.nc + hashes: + binhash: f4505140bc7c26cd1d1b56fe26f42398 + md5: 147c787c3a6145f797e2a88c12aa8c8a +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010000-200012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010000-200012312100.nc + hashes: + binhash: d387e17f0481b51495058696a62db0c1 + md5: 4cedc6140651ca18f0a75e3c653c2fa8 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010000-200112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010000-200112312100.nc + hashes: + binhash: 2c567ccb881de5adf23ccb66062375ae + md5: cdc793053ab3f49d5f11e6a8892bc957 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010000-200212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010000-200212312100.nc + hashes: + binhash: 824578cbbb9a0106d88d2a179b33f3c7 + md5: abd50fca4d51a3df640f8453dfa11210 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010000-200312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010000-200312312100.nc + hashes: + binhash: 7863a385de8d145167a74301947a2002 + md5: 2ff0ea9339639aef46aac1ba210fbc87 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010000-200412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010000-200412312100.nc + hashes: + binhash: b50a1f5ea052ea45fadb09be38637682 + md5: cb2a01b20d99b8526b8a482e087a0192 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010000-200512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010000-200512312100.nc + hashes: + binhash: 21fe3d4fa052c134bd8e1e799fcdcf60 + md5: dc64ff4c806cbd232bf16f68299794a9 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010000-200612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010000-200612312100.nc + hashes: + binhash: 8fca36d3923361f8892d025543acc57a + md5: 174f3e51058e448ea1c38f529ef9ab82 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010000-200712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010000-200712312100.nc + hashes: + binhash: 06222a43e96245cce4c15a9191dcee71 + md5: 6fe0b9073cd7fc625aa11fca66651dee +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010000-200812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010000-200812312100.nc + hashes: + binhash: aedde6b83f9dceae4281012772393b94 + md5: 6b9bbc0f975bf85d49a3a5b6e08eed5a +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010000-200912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010000-200912312100.nc + hashes: + binhash: ff54bb0a742fa798b2b02dac4ae3e9a2 + md5: 9a5c770307b5ff75d6cf6d0161e1f7f2 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010000-201012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010000-201012312100.nc + hashes: + binhash: 0f6912b9a1ec9313cf5389c0adeef58f + md5: 09a9ec3f93ac2465ce50a025a186a7e5 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010000-201112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010000-201112312100.nc + hashes: + binhash: 9d5345289ec3aba568f017728f8b9b96 + md5: 6817406df3ba3c0b0d799dfe216b2606 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010000-201212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010000-201212312100.nc + hashes: + binhash: dd4950dbafc1c4da22dde93097c6ba31 + md5: 6128d9b6fe91d3f9caf7403e39b03331 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010000-201312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010000-201312312100.nc + hashes: + binhash: 415ae8d3c74f246e2f19502b21c352a6 + md5: 4c5252f6aa1fa5518e699ee9d6d9f1d7 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010000-201412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010000-201412312100.nc + hashes: + binhash: 87f7e34d3911a2a81d9f7d806b08128b + md5: 2b0e2187f50329ef2f9c1905c9643922 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010000-201512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010000-201512312100.nc + hashes: + binhash: f4767181e87b31091483ee696c607538 + md5: fca6054b18245608f91cc4ab646a3aa1 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010000-201612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010000-201612312100.nc + hashes: + binhash: a0a676b3597aacfb733b11d736a1d6a9 + md5: 855809a4411f5be63f44f6b176692a43 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010000-201712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010000-201712312100.nc + hashes: + binhash: 860a1715970f77a659b7e659b4e00497 + md5: 2fa5043672deea7beebd62b48388b9ec +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010000-201812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010000-201812312100.nc + hashes: + binhash: ec4b54a0646b761ae6008671e896ba28 + md5: 094a7fc74ae7247125ea667e357b0da5 +work/atmosphere/INPUT/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010000-201901052100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/psl/gr/v20190429/psl_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010000-201901052100.nc + hashes: + binhash: 8cce5acef47caaef844653b8565970d8 + md5: 9433ee01eeb6b9f1dad59a67cfc63b0f +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010130-195812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010130-195812312230.nc + hashes: + binhash: 1a5cc4474bc4531e4afde08b031e8708 + md5: 3e8958190f1fbf9cd593fc165372b955 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010130-195912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010130-195912312230.nc + hashes: + binhash: 4cc56017cc5793fd528e6150f3ea24b2 + md5: a0b83d083f01c3e53693f5d8412704f7 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010130-196012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010130-196012312230.nc + hashes: + binhash: 9deab19dd497c1d86437053f96b5471d + md5: be4f4d4959b371ba07ae5aafd288309e +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010130-196112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010130-196112312230.nc + hashes: + binhash: 6b215de966a39d89f0e6305e7cd1e49c + md5: e1b2d4c713e29c9c08c7d2e7ad5c37ab +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010130-196212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010130-196212312230.nc + hashes: + binhash: 80c91fdbfb3ebb464a1a9ff914e09d51 + md5: 8e18c7818a7624fc13ac95210adb8bd5 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010130-196312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010130-196312312230.nc + hashes: + binhash: 8d04f4bf2a01a914f9a7fa7b57eb29a8 + md5: 2538f7637b1099aaa0b06c17e42eaecc +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010130-196412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010130-196412312230.nc + hashes: + binhash: ede39e7023b6ae0465e42adba7ac054d + md5: 5f490110eae36b90a8786567875bfbdb +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010130-196512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010130-196512312230.nc + hashes: + binhash: 84c926add2dc8f0f1b98bbc91f46f6df + md5: 1d060e87c703cf69135fa5123683b72e +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010130-196612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010130-196612312230.nc + hashes: + binhash: 4fdb268b092788b72bf71cded2044614 + md5: b1645048846eafada4554a34d22307da +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010130-196712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010130-196712312230.nc + hashes: + binhash: 7826622db72eaab7ab69f4e1fff3e5c3 + md5: 59308cbd89984d4051d05641345e10f0 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010130-196812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010130-196812312230.nc + hashes: + binhash: 518f807f3f451f5c22c1b7c8b4022dc9 + md5: 137988eba1307ca0dd88366745f7876d +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010130-196912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010130-196912312230.nc + hashes: + binhash: 61726f1d8cb99a92cb20588c7e758e5b + md5: 940925ab15e34f29e1912a3cf29a85a9 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010130-197012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010130-197012312230.nc + hashes: + binhash: 01250aa35d23cc4c4d58700add775e39 + md5: ad63d0ecf7d66c815e381cbf416431f4 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010130-197112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010130-197112312230.nc + hashes: + binhash: 297209ce6e23ba3d2a00caa58b0903e7 + md5: 59a8b789f09f3fc6f8697fda16b0222c +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010130-197212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010130-197212312230.nc + hashes: + binhash: 253da2a2d2fba2ef54f575c0958c5694 + md5: efc3b916f47f970d521a70be4c9d1d62 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010130-197312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010130-197312312230.nc + hashes: + binhash: 6aaf17834e4d507b268ad1ce13ffb792 + md5: 36ce173350194fd809761bd9526ca390 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010130-197412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010130-197412312230.nc + hashes: + binhash: ab92f637b6865ae393532af40a924870 + md5: 152f9925f527f40c6ccc92988150ddc0 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010130-197512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010130-197512312230.nc + hashes: + binhash: 4f0756a982e9c956d08ec3291e807a33 + md5: ff7cad474d6ce0e30c7fcf70139a92b7 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010130-197612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010130-197612312230.nc + hashes: + binhash: cdb38df1d018b3932cd84930d8aa4f49 + md5: 2822187cd10217ca9a948a9465209bb3 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010130-197712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010130-197712312230.nc + hashes: + binhash: df5ba0c726240c996ee03053fd62a369 + md5: 498dc1fe8623b9b10fb3dbd40a9a378a +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010130-197812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010130-197812312230.nc + hashes: + binhash: be7c9954865a9cd1ddc8f137570387e9 + md5: 7414eb8c460891c0cf2c146cb8b513db +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010130-197912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010130-197912312230.nc + hashes: + binhash: b67ff050c90e81e7338df24f1e9d5ba0 + md5: 21f33e23c119b4a71e9c2ff54316a279 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010130-198012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010130-198012312230.nc + hashes: + binhash: 3ae32293c32df30df661bf6a333934aa + md5: 54cfed3bb0854ea628d82e9e6451f6db +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010130-198112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010130-198112312230.nc + hashes: + binhash: 7cd7d6c3dba9babdb882f122886e81f6 + md5: df5439cb49cb5f876d40a1bd268f22da +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010130-198212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010130-198212312230.nc + hashes: + binhash: 54d09243f2bf041ef9d4c8b4757d8957 + md5: 8864489fa263793edb4359d6020da306 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010130-198312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010130-198312312230.nc + hashes: + binhash: 415a65e3ddc07bd55b8dc51380c6661d + md5: 1c151b003ca2e2ac55b4c8a08ffda654 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010130-198412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010130-198412312230.nc + hashes: + binhash: 750e5bf7719d3a4503ad5710293ad164 + md5: 7a7f7ebf48da94735397e09dd657d3dd +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010130-198512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010130-198512312230.nc + hashes: + binhash: bce09927d75cbdfd9c05c4bc8a7018af + md5: 2c273379f5731aba046f6692534dfce0 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010130-198612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010130-198612312230.nc + hashes: + binhash: 6f785abb832bed3da8645ff1dbd5d006 + md5: 59d52927739d8dfe4d7f9df49da1ffee +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010130-198712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010130-198712312230.nc + hashes: + binhash: a313fbb9b5daa95a871f75cc65d882d1 + md5: b1de6ec23501cc5e94805c5b6db7fe77 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010130-198812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010130-198812312230.nc + hashes: + binhash: 85853ff620382e48944f3376bec059bc + md5: 8b9fb876905fd1b596356c64f6468169 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010130-198912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010130-198912312230.nc + hashes: + binhash: 31e48dada16d35427ee457d422fcfc1e + md5: b26f0807375749ffb6f085ea61977f39 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010130-199012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010130-199012312230.nc + hashes: + binhash: 18e9cf9d81d9fa57a995ebc1371bd12d + md5: ea2a8325baffc675aab8551b3ab186a0 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010130-199112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010130-199112312230.nc + hashes: + binhash: aa6a42c8e92181eabb3841b0977a0c32 + md5: abd540471a88b90ea13a4c0005afbdbd +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010130-199212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010130-199212312230.nc + hashes: + binhash: 24b39b7757bee2d97fc7480ec98eea7f + md5: 319c6e179c570cb266fec0dfbf85b5eb +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010130-199312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010130-199312312230.nc + hashes: + binhash: 8fc34abeb746e721a08b079a6748ad31 + md5: 8d4c075b68bc821c2f8f8e8853513ebe +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010130-199412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010130-199412312230.nc + hashes: + binhash: 6fb980c69dce5a6d26a93deb5055391d + md5: cc5048fce4e75cf01221415304791564 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010130-199512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010130-199512312230.nc + hashes: + binhash: 9f2db6392aa0662f684434ebe0b33d3a + md5: 90ca6b336b092f893dd1b7417222b37d +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010130-199612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010130-199612312230.nc + hashes: + binhash: 0f0adc1fbcf7d048bbe0192547f19988 + md5: 5e8b73dbeee3a17161ca2dc5771058df +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010130-199712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010130-199712312230.nc + hashes: + binhash: afcf04a1bab0d175f903cb450ca3ba9a + md5: fba68643f0f9466c0d493012d8a72c5e +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010130-199812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010130-199812312230.nc + hashes: + binhash: 15262f8e5fd5f5b0776d61ff5ffb91e6 + md5: 122944990c67883de3e79bc9c9f3a232 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010130-199912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010130-199912312230.nc + hashes: + binhash: a2258c59d154a5717c26670ffbea5ba8 + md5: a56f9addea8812db143ea0b961b9bf27 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010130-200012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010130-200012312230.nc + hashes: + binhash: 977afce009eb0b33b4f902a5afb7953d + md5: c161bf64be15c12273a556bcb0541169 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010130-200112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010130-200112312230.nc + hashes: + binhash: c2ab568b2701f03d6a41cd13dd7d640d + md5: 30db7152c1083f610f470390939fb57e +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010130-200212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010130-200212312230.nc + hashes: + binhash: 8e7b2ac516028faf9f3660652c29faaf + md5: b199fb701134b23b7b04097af40db66c +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010130-200312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010130-200312312230.nc + hashes: + binhash: d0176916693606591a8519d7b84a2ded + md5: e575062670d6b41dba4d5b402f8b13cb +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010130-200412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010130-200412312230.nc + hashes: + binhash: aabbd5da8d58b751f10182f1a4b6542e + md5: da33dd36141c90d9452522a05157482e +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010130-200512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010130-200512312230.nc + hashes: + binhash: 3a8854b52ba97adba3756c42eb4c01bb + md5: acaf47955c46d85c55ac3a59026cc9a4 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010130-200612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010130-200612312230.nc + hashes: + binhash: 0f7bd77659ea4883e4a28849d74e060e + md5: 5f8ae22a9ad3ac9ca42eec3b83fb5ab5 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010130-200712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010130-200712312230.nc + hashes: + binhash: 0ae2cd2726fb09fe045a96d7e16ac43f + md5: 5314a03f541e5c7b2ed5c3b31f066b31 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010130-200812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010130-200812312230.nc + hashes: + binhash: 4adbfbfbb7835209f5625b8a40f3624f + md5: 9482725eec844b78ffae394828e5e8bc +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010130-200912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010130-200912312230.nc + hashes: + binhash: 2d5330c97ab65ab9918d5fa290b7ac67 + md5: fdb295398896dc546ff822c01b6c5c21 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010130-201012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010130-201012312230.nc + hashes: + binhash: d0d33961a69ba277302571e41cd1967d + md5: a42c6dca38a19b15e12a3b8f2efde366 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010130-201112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010130-201112312230.nc + hashes: + binhash: af302e69173c08ed625b40935e868a74 + md5: 0b37db834d40f1449190dda26064f469 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010130-201212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010130-201212312230.nc + hashes: + binhash: 299a91958e16d90e82fbafa924da7e55 + md5: 57d02b89bd4a26dc3827e3d7093ecb8c +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010130-201312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010130-201312312230.nc + hashes: + binhash: b54a97a8750f7b23460df5f78ff17445 + md5: 62c0be5c14832ec76ae55d12f1c620c8 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010130-201412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010130-201412312230.nc + hashes: + binhash: 9db94ed0986d0ca4eea27b517c3fc577 + md5: ede6e5ae999f08c42b0cbad4cd1e7f5b +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010130-201512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010130-201512312230.nc + hashes: + binhash: 9f96edbd1e4c1d309df6e8f6f93823a9 + md5: 4f4af4611505d1d7d5fdbd316ae5a0c6 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010130-201612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010130-201612312230.nc + hashes: + binhash: 00268142fcb881111ee05b47f8e7ed34 + md5: e43dc664d68d3f1c3c1cd304df353039 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010130-201712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010130-201712312230.nc + hashes: + binhash: 24ace9257748175ffc092093cebc4a76 + md5: 88fe28b3c79b55e7e1a8108f581bc827 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010130-201812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010130-201812312230.nc + hashes: + binhash: f34891ae40d650612cb11895ff213946 + md5: efa315c0d1f1610b0a5600db1489a259 +work/atmosphere/INPUT/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010130-201901052230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rlds/gr/v20190429/rlds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010130-201901052230.nc + hashes: + binhash: f1a3c4313a4f6ff631f0fe887a849153 + md5: 3d08213bdacd00ba2cfde806cf6d6b6f +work/atmosphere/INPUT/rmp_jrar_to_cict_CONSERV.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/remapping_weights/JRA55/global.1deg/2020.05.30/rmp_jrar_to_cict_CONSERV.nc + hashes: + binhash: d7b11ae77fba63aecab0892891135a1f + md5: 10f0b5ea6b8102a03ad1140e5163a0f7 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010130-195812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010130-195812312230.nc + hashes: + binhash: 8d0e04d6cc6b2393f2e7f804ee2064f5 + md5: 43da15cf4d7b073c9ea441fcbb53be89 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010130-195912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010130-195912312230.nc + hashes: + binhash: bac436ac62990dd79120f80930819f95 + md5: 1e5a14a15d36b554d2982e0d31711f21 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010130-196012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010130-196012312230.nc + hashes: + binhash: 98632562e9b13cc0014e03894149baed + md5: cb69e89ecddb5332162b0cef9107454b +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010130-196112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010130-196112312230.nc + hashes: + binhash: 54ac033062bce09c70a97fc7fc3cf8ee + md5: f603a441ac24e6ba804aecf9dc2cffb6 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010130-196212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010130-196212312230.nc + hashes: + binhash: b3012fd3b5a06e234a322f7d1cf90ec1 + md5: 98440657c085e56761ed956cf0d414f2 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010130-196312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010130-196312312230.nc + hashes: + binhash: 37459d804e36ba436116cd0618c1ade0 + md5: 46fad97684ca372532293fc39432ca59 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010130-196412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010130-196412312230.nc + hashes: + binhash: 81183127d9c3ec2678953b2e25d35be7 + md5: c9087f77bb18764b3bd4703b4686e41b +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010130-196512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010130-196512312230.nc + hashes: + binhash: aa4837c300854968de4666d0ed039c81 + md5: 0f0360c61b986a6dc098a6ec864a7120 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010130-196612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010130-196612312230.nc + hashes: + binhash: 1dbc7c3493056fe8b15703cdff29bcfd + md5: dbc493f6925adc9b23071bbc8073f3b1 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010130-196712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010130-196712312230.nc + hashes: + binhash: f44960eda5d24d475b4cef399cf5e1d5 + md5: d68916c53caf38b11f10ad664558c5cd +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010130-196812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010130-196812312230.nc + hashes: + binhash: a69d68800a724037e352f86b4defaa1c + md5: 4070a5bad1f11f0bfc23b33fe24dc2cf +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010130-196912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010130-196912312230.nc + hashes: + binhash: c204af73d04635453efcd8447c06f5b4 + md5: 3ad8a5d610a1a5f6c399612abc2ef726 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010130-197012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010130-197012312230.nc + hashes: + binhash: c2b88793220df14cb525b607317b02b7 + md5: f34242ed72235a67b35955e5b0052b1d +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010130-197112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010130-197112312230.nc + hashes: + binhash: 9fed2c4a190bbb275c3e38f60dcb69b7 + md5: 7c3b830df81cdbd33d07cd51c6b5a494 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010130-197212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010130-197212312230.nc + hashes: + binhash: 4809a559de60ec78dda27f65f69ab2f9 + md5: 491b133fa5ad85d676a3d478b4845be7 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010130-197312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010130-197312312230.nc + hashes: + binhash: 3c7530de94186c4c9d73e7af7e543475 + md5: af01c3709aad562e172a16c470f5c7f5 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010130-197412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010130-197412312230.nc + hashes: + binhash: 6acbd4d43c2638cda10e8fd0cd8348b9 + md5: d0cb2ed9e4f5aed0ed24f0cb6e6cccb0 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010130-197512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010130-197512312230.nc + hashes: + binhash: fbd7ad4ae534a82c1199e52c296f99b9 + md5: 2ff0fa4f3623ed89571ffc1e671097cd +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010130-197612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010130-197612312230.nc + hashes: + binhash: ac5b6dd28c51d1c3ceaf9083cd2c3d1c + md5: 0a9d79b3bfffb5660aa7e8d175640ece +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010130-197712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010130-197712312230.nc + hashes: + binhash: 88d8b46ca4e22a787203a845df565116 + md5: 034246fc2ca1609ac9b524897e325136 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010130-197812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010130-197812312230.nc + hashes: + binhash: 561f39ecfe151ba51e6a83a3f031e3d1 + md5: 6be598ee419a01abf1fda9ead4913cfd +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010130-197912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010130-197912312230.nc + hashes: + binhash: dfd6a208746e4c0a01484ed00f7a5a44 + md5: 2150e92577358eec0e71bcd97074dfee +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010130-198012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010130-198012312230.nc + hashes: + binhash: 0526f3e1113d2d8efa02a9d77c14afce + md5: 477d5e8b37f926a2d9d6b5ab96d3611e +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010130-198112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010130-198112312230.nc + hashes: + binhash: a1fb67c351a7a126942ef2de68b39c51 + md5: c55b4ee0803a9ad3653b1cefc1d8a094 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010130-198212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010130-198212312230.nc + hashes: + binhash: 76faf9903b29fea6c183156860844687 + md5: a912a30b96dadc5e12b2519c31a5f351 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010130-198312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010130-198312312230.nc + hashes: + binhash: fb4a395a875f5023832d47a49eefceee + md5: f9b397d4049e9d56692469eb604f6ec4 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010130-198412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010130-198412312230.nc + hashes: + binhash: fc9320d6ffa76e44641cc7d94095f233 + md5: d2c2255f28494d01553ebae50b750412 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010130-198512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010130-198512312230.nc + hashes: + binhash: 9e22352ca08410b6662d669a46de4681 + md5: 14d6695fd2e3b07c73d68504121534af +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010130-198612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010130-198612312230.nc + hashes: + binhash: 04746b64dab392206ff5f549f06c8706 + md5: 98e9f3de56570040240fec19db131f52 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010130-198712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010130-198712312230.nc + hashes: + binhash: 5017ef4040a76dddf007a8853582d916 + md5: 885d384390631ffd3da92e87c78667a3 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010130-198812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010130-198812312230.nc + hashes: + binhash: 46fdf6a77f0542b11bfbd35f86a94173 + md5: 987f527638e8775d71e87112cac50019 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010130-198912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010130-198912312230.nc + hashes: + binhash: 6a54159751a177f7ba3099cd37968f86 + md5: 601cdfd8656851fc4980865a4e9f414a +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010130-199012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010130-199012312230.nc + hashes: + binhash: c0ae68fca01168edccb44d3eeefb7d1f + md5: 1f278d401082a28fb88279fe7a3f6ef3 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010130-199112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010130-199112312230.nc + hashes: + binhash: 4e4ba9e7136cf036f86b275a5ca7a429 + md5: ef25240fb10313371c21b24596812f20 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010130-199212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010130-199212312230.nc + hashes: + binhash: 32f9c00fdb06e67e0cc201ea5ce83562 + md5: b9b79ef7d229405b27f4aae5cd4e995f +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010130-199312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010130-199312312230.nc + hashes: + binhash: 83f3c99672cea2cd2ee77652e976077d + md5: a3226e402ebf188bfa8e04b77753cd09 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010130-199412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010130-199412312230.nc + hashes: + binhash: 8f7f4074dbfe519b902fe52834d8a975 + md5: fae21c44a5d407d32a357b4342f9bdf5 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010130-199512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010130-199512312230.nc + hashes: + binhash: 09ecae87fd0d5c12912c450d499736e0 + md5: 3341fd134badc0d523629ef61b227234 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010130-199612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010130-199612312230.nc + hashes: + binhash: 23563345d867f5f5dd9a6a00c4c70ebc + md5: 28d173d5f2778c8138f61d5971daa655 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010130-199712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010130-199712312230.nc + hashes: + binhash: 51b5d9984d7952d372b99d3b894141ac + md5: 34fd97e411ee99c9351740b15598350f +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010130-199812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010130-199812312230.nc + hashes: + binhash: cb8fa42fd0dde3923a03f2fb3f43fdf1 + md5: 2e23af21b9689bbcf5c9d7cf80d5544c +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010130-199912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010130-199912312230.nc + hashes: + binhash: 377dadb498f654964b3f933d118ecd55 + md5: 38f83577a4dca49072d199cc297e6b14 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010130-200012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010130-200012312230.nc + hashes: + binhash: 636b30f533d9505baef2f977dd7286a1 + md5: 4371ea45662cf533fb591e83d5006f7c +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010130-200112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010130-200112312230.nc + hashes: + binhash: 4df218cbb4b462b96ba8da39e61f0712 + md5: 2d9c694e1cffbdb8ef43b9c1ce9ca19e +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010130-200212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010130-200212312230.nc + hashes: + binhash: 5958b816d71a65048b20521d804cb2f7 + md5: 9a5ff4ab3c0a6cec9d350d9a0fcb149a +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010130-200312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010130-200312312230.nc + hashes: + binhash: b77d04fe70c9b769198e35cdbb80184c + md5: 005a5de650f5c11ad05e66ac84d2d69e +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010130-200412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010130-200412312230.nc + hashes: + binhash: c4bfbf97314ca52d68640cb4425beb22 + md5: a7b90a41393f9851ba9a588c51ff18d3 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010130-200512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010130-200512312230.nc + hashes: + binhash: c3d6d9df3de5f941dc8a012edd555ba4 + md5: da6bd7d10c5c31eba29ebe52237c0aa4 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010130-200612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010130-200612312230.nc + hashes: + binhash: 58463fcf2c0ce5043741257971fe1bb8 + md5: 38f0bcd0d11b45eb37195786241a2a8f +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010130-200712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010130-200712312230.nc + hashes: + binhash: 3c1a50b376454ce6878f5f85d8b5bdd1 + md5: c52e7c3cbc8c2cdfb2e132272f8d5408 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010130-200812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010130-200812312230.nc + hashes: + binhash: 2757edb0f86f08d2f5116bab2a883aba + md5: 995d52a8694ba682f10ada5c5a7eda6e +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010130-200912312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010130-200912312230.nc + hashes: + binhash: 65693bf4a8c8c6f1a722aed1d80f5cb8 + md5: f8eefaa8ff861678677b1c5ec52b4917 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010130-201012312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010130-201012312230.nc + hashes: + binhash: a04abe816f7d02d760790142f2e0fcab + md5: 5c380b482f10e2f6c104f102ad0ea547 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010130-201112312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010130-201112312230.nc + hashes: + binhash: 0bd2d10b7f87be14ed384a7b234af840 + md5: 50478bf3716f1e6add478a19f7596a1f +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010130-201212312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010130-201212312230.nc + hashes: + binhash: b6b8a799b41748eaf037d855ff860e77 + md5: 5dc34950877f6431c07bbd02b1cc3ff0 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010130-201312312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010130-201312312230.nc + hashes: + binhash: 1265a03b15a55646b38a5b247d773feb + md5: 0d8719612fe2b0f13565f683cb4e9267 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010130-201412312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010130-201412312230.nc + hashes: + binhash: 5616d6d9ceba81fcf11ca670f616a261 + md5: e7f6d24dff21f3a49ae7c15d46160215 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010130-201512312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010130-201512312230.nc + hashes: + binhash: 4282a12f20e700ed743a9432e5f119de + md5: 3c20b4c1817b8250b9e00074267c8479 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010130-201612312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010130-201612312230.nc + hashes: + binhash: e39a3c1cecc606b9f805a1a9ea885eed + md5: dfeb4c1cb89805d940060824aafe8be2 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010130-201712312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010130-201712312230.nc + hashes: + binhash: bf305c5732c12e06bfa62bc2a7049104 + md5: 3834a4cf19fd6fe5e203e724f87a91fa +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010130-201812312230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010130-201812312230.nc + hashes: + binhash: 9f3d199da9ee56fb8cd4dac3a01d6125 + md5: 4155e797a79b271c8c113081584964b1 +work/atmosphere/INPUT/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010130-201901052230.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hr/rsds/gr/v20190429/rsds_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010130-201901052230.nc + hashes: + binhash: a876199636180b620367770d860bd0a2 + md5: ff51b282d75d57fa40bd321e3e715684 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010000-195812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010000-195812312100.nc + hashes: + binhash: e8d1734d099b10420eeb7cc22ad98b54 + md5: 755d4ab50b538414c427f72a179e4585 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010000-195912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010000-195912312100.nc + hashes: + binhash: b71f4dbf6389a58c9ceebd6090842ed6 + md5: 7fac14da785b30e4088138915a5eabdb +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010000-196012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010000-196012312100.nc + hashes: + binhash: c3027b07e516ae3e87232933c07fe238 + md5: f0dac2e9a974360cc46b4e313d146cd5 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010000-196112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010000-196112312100.nc + hashes: + binhash: c9c623cdc7f20a4addf149a949faa73a + md5: 35819e6691575aaf0f260d37655bf3bd +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010000-196212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010000-196212312100.nc + hashes: + binhash: 2061cd05e967fc7583d664dc2cafde48 + md5: e58284401fc5179d50e363e26df1dcb7 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010000-196312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010000-196312312100.nc + hashes: + binhash: 581092e34bdf49a031686254251d3427 + md5: c1b7d97034074a111262f0906eee36ae +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010000-196412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010000-196412312100.nc + hashes: + binhash: 7f66c09579aeab4ba9f22c635cc11351 + md5: 70d5f3b5dd59c4964b4c326054a0be53 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010000-196512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010000-196512312100.nc + hashes: + binhash: 7f44c7da2a6d88f73898e4482f093f27 + md5: f1c63bde825e2941f31301492bd55c6f +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010000-196612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010000-196612312100.nc + hashes: + binhash: db1e5144cfe6ec22d2a8b125053c6356 + md5: 4973cd6e195d39fb778d921abe41876c +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010000-196712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010000-196712312100.nc + hashes: + binhash: 21c3e9e524e591858deec39cf661c965 + md5: abae1ea9355a602d1935f9cf777c7679 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010000-196812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010000-196812312100.nc + hashes: + binhash: 8ec081e1ee0d6db204d8360af32d83df + md5: 9b4b739a9e6a4a0e1c499a2bfaed95de +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010000-196912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010000-196912312100.nc + hashes: + binhash: 49b49f69535190b9677e5e4ac50bab9e + md5: 29092de300d457208027e81421b7d2e9 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010000-197012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010000-197012312100.nc + hashes: + binhash: 3ece09a0105733bb302f51cb89c70fd7 + md5: 5954703585f99b5cd2420e276b314411 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010000-197112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010000-197112312100.nc + hashes: + binhash: e392fce1da6b720bacfe988e2b02c487 + md5: 0cb1568ea890e03bcfd3ce556b742282 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010000-197212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010000-197212312100.nc + hashes: + binhash: 51427414a4bf2af0500307c260b710ac + md5: 1fd41e7dba7344af7a97c31df50e07bd +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010000-197312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010000-197312312100.nc + hashes: + binhash: 59564840a1c880b673e4ecb98a51364c + md5: 49979918a6cea60231aa6eb7bc2b8ee0 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010000-197412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010000-197412312100.nc + hashes: + binhash: 817b0824729d4c2a1e0f993927a5a4aa + md5: 48343f5fb6a6a6cc5420c4b92380a45c +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010000-197512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010000-197512312100.nc + hashes: + binhash: 2a9e8a2410ed5786b9634b55c822faaa + md5: 9c4ea497c72b514e9fbcf1ee6f3f7a9a +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010000-197612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010000-197612312100.nc + hashes: + binhash: 6449d5ec3d262d436ee8b15a4558a831 + md5: acf1730160dbb469363424e96a4888ab +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010000-197712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010000-197712312100.nc + hashes: + binhash: 35d6e844e73f55c20f5371fb643c5bdf + md5: 11a1ccf9a09bfb8adc2dad621c9d57d4 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010000-197812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010000-197812312100.nc + hashes: + binhash: 0f6d864d5ee93aec22cc709fbd4a8868 + md5: a6398b65114907fcd330527bd4a73a68 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010000-197912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010000-197912312100.nc + hashes: + binhash: 86018c8c1ac7bff257f66c77085e4cc6 + md5: 5a69aff36d7707f1d110b177355a419a +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010000-198012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010000-198012312100.nc + hashes: + binhash: 1325e5acdbbd31abd234804f8217c3c3 + md5: 5b77ba829f4ecb4f51684a319ab33394 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010000-198112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010000-198112312100.nc + hashes: + binhash: e2dd584494134125cd2942a59886a8c4 + md5: 0a4c5ce26f798efd6efbbb296f2ff067 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010000-198212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010000-198212312100.nc + hashes: + binhash: 2fbed8467b279ce3e63e9754c768ced9 + md5: aa4f4845142300ddcb98bc1fe72e702a +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010000-198312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010000-198312312100.nc + hashes: + binhash: 10e3587a510c49756486090175f39b01 + md5: c3211fb6a2c8a4ee2293e8f32dcd4115 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010000-198412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010000-198412312100.nc + hashes: + binhash: d1af936a5e5d42f2c16e1eb047a4d6ec + md5: ba68ac72d28a0d359c0249452f62227d +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010000-198512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010000-198512312100.nc + hashes: + binhash: d76e8583219b8a9d247638b1d51c00e4 + md5: b01ebf2142849d2c1d87f17c1adc0f24 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010000-198612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010000-198612312100.nc + hashes: + binhash: eb8794d728dbd112dd8809fbacfcbed3 + md5: aff01872c7090d3e2a9698ca1bbd6f65 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010000-198712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010000-198712312100.nc + hashes: + binhash: fbdd71e95687662b401ae3659d023e9c + md5: 12d718e1759fc50f3a9d4b983d7ecd27 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010000-198812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010000-198812312100.nc + hashes: + binhash: 6e51cb3514aaa965b053cb9797f08d75 + md5: 3e245362fb71e4746b5abdab1cad18d8 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010000-198912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010000-198912312100.nc + hashes: + binhash: d438289114b3af96287389dee22d8ef2 + md5: ec114d9b13ab5ab9e18bf0fefb6b36dd +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010000-199012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010000-199012312100.nc + hashes: + binhash: 04fa4ed93771f04eed0cae8a2b480607 + md5: 6d82604be6649dee82f9bd35594471f5 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010000-199112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010000-199112312100.nc + hashes: + binhash: 916cd4bf94a12224c7c59e7acba0cfbd + md5: 88db5735b8b19926dade0b05f9f82539 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010000-199212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010000-199212312100.nc + hashes: + binhash: e6c28f2c7b899623e87a40d7fbcfe276 + md5: fc0265a8a225ec5eb33c7ae301fa4497 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010000-199312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010000-199312312100.nc + hashes: + binhash: e65341515b3f6c8961d3f51d996d794a + md5: 86c5fe383c9ebca1905872f6c0d4f400 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010000-199412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010000-199412312100.nc + hashes: + binhash: 651c650f7065522a94ada5ad124da92d + md5: cff860e9668c1d9788c2c10c71c2f3e2 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010000-199512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010000-199512312100.nc + hashes: + binhash: 45899d004c5da09342ee723d14398cb8 + md5: 1d2421cce035a481b1c99ba030edee4e +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010000-199612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010000-199612312100.nc + hashes: + binhash: 21dc820d1eaee443493436c1cf107191 + md5: 19ed187d370d6af4b1a48cc1046e396c +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010000-199712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010000-199712312100.nc + hashes: + binhash: 8adcebc2bddb070b6703e1f94ed53dbc + md5: d197c9d5b0da450f02afbd0220c4da96 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010000-199812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010000-199812312100.nc + hashes: + binhash: 22bc89934e2b9ab97edf36bf7f198c8f + md5: 437a24bd453376fa5561546174e56dd6 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010000-199912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010000-199912312100.nc + hashes: + binhash: abb64dd80ce8888ccecf37273f4b9f55 + md5: d5ad92e8c70d15b8a2bb7679a69e38b6 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010000-200012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010000-200012312100.nc + hashes: + binhash: 7bb6d52aba7dab3659d12906ab55ce47 + md5: ddf82c08efae66effab6901d19c77bde +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010000-200112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010000-200112312100.nc + hashes: + binhash: 32290175ba13e9891c90b9de61c085aa + md5: 7fc42ed479f1dc658549077017f5284f +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010000-200212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010000-200212312100.nc + hashes: + binhash: ef5a8a6310ae998428ddd79058d2d000 + md5: d41db4afaa477da062d0b76b537b22a8 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010000-200312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010000-200312312100.nc + hashes: + binhash: 0809e4bea260c90643603121c9a22f7a + md5: 23feaf0f39714766f23027701bc47a77 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010000-200412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010000-200412312100.nc + hashes: + binhash: ef733fe39492e03fc22994ce9cb9e2c0 + md5: 13ebbbd0f91adeee09e8afa842a691ba +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010000-200512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010000-200512312100.nc + hashes: + binhash: 67c9e00d93c9ef411b3f8138d8f03071 + md5: dfc80b3630f6a65eb6109cd998f5d87a +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010000-200612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010000-200612312100.nc + hashes: + binhash: b85b17f62f16d41499d2a65562c23ec7 + md5: d9d9e06854d4e442daa6b3c838fb7ad8 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010000-200712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010000-200712312100.nc + hashes: + binhash: dfea50f7968aaebca17a51487fc10cfb + md5: d96bd88ce6892298593426a35c8f1aa4 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010000-200812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010000-200812312100.nc + hashes: + binhash: c73becb1c55b99ae0d02627bf4ef2f32 + md5: b97f7695fcecf209c8bc41e1c589fb87 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010000-200912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010000-200912312100.nc + hashes: + binhash: c06834d1b171733c3dee3ef64982e3fd + md5: 0b3ad914b5dbbe4113ff424b3a21f9c1 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010000-201012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010000-201012312100.nc + hashes: + binhash: 2cd62d248b27d9387abf88961dcfc354 + md5: ce584b1dfda9bc3fd0a77569fd1ec764 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010000-201112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010000-201112312100.nc + hashes: + binhash: c9b8877e27f82b48bd6c5fb0a5ca743a + md5: 722ec4eb9f2c26cbebd6e92834887dcf +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010000-201212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010000-201212312100.nc + hashes: + binhash: b6fc1d42a6f9d826b88a38f3dd0e1299 + md5: ea5ee3e39b7e2b1973f22f0d5a7ead90 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010000-201312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010000-201312312100.nc + hashes: + binhash: e25fe0399f4a54bd922d54af6407826d + md5: 1d4da457b3504f9907fe3021477c26d5 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010000-201412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010000-201412312100.nc + hashes: + binhash: f1c40cc2db6ee6b75037c3be279b6920 + md5: 6cbe196d75610b65ecd6ad252214b98c +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010000-201512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010000-201512312100.nc + hashes: + binhash: 2af34add81b65bfa1e04a12a4933fa52 + md5: 81143fddab6b8a15add02f7cd28214d7 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010000-201612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010000-201612312100.nc + hashes: + binhash: 8b053014f41943ce9661671baa3713bc + md5: 743cc6c905a02687e8e1a94f728a6b08 +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010000-201712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010000-201712312100.nc + hashes: + binhash: b45d6052247055f52b5893a484b26416 + md5: 58d32c4d0756f8ef80e1bf7dc3ae6d7d +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010000-201812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010000-201812312100.nc + hashes: + binhash: 0689fa0672a90b9720fdf52a6514b213 + md5: 481d502f68b96fdbdbc4e8ddc053be3e +work/atmosphere/INPUT/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010000-201901052100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/tas/gr/v20190429/tas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010000-201901052100.nc + hashes: + binhash: 4f94260ac016eb78c443ba784c78a669 + md5: 837cc3100dccb5252d76eeb62d189cda +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010000-195812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010000-195812312100.nc + hashes: + binhash: 153d58bec1893db922e34844841d1755 + md5: f8f26334a11ceec8ee9073c49772eefa +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010000-195912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010000-195912312100.nc + hashes: + binhash: 48e285221ca42d0b74386a9c78760f12 + md5: cc4ce396b43b48121eea7320ca945a90 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010000-196012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010000-196012312100.nc + hashes: + binhash: d9636c8270c5beed8f8912e6a495c1ff + md5: 199e7f4a216893e2fad2e57525f06ca0 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010000-196112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010000-196112312100.nc + hashes: + binhash: 1c8614bcd9394f8e2b0a85ecb46575a4 + md5: 613be08ae77d6906a5ab55231e6eb6a1 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010000-196212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010000-196212312100.nc + hashes: + binhash: eacd61fafec96175e5f653d1d9b31ab1 + md5: 94f6fe63b24a4e8de8b651187443db37 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010000-196312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010000-196312312100.nc + hashes: + binhash: 908e5d6a0748e754aad2556b0f29d96d + md5: 51e1372b7007c4fb358f984c0256c7a8 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010000-196412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010000-196412312100.nc + hashes: + binhash: 610b4d75984efc7bed812b728d075e24 + md5: 2b87b2805ee319c1399d5a5e0c23cb69 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010000-196512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010000-196512312100.nc + hashes: + binhash: 2304cba075d972806a8963731d780ab7 + md5: a7585d28983e9cc31e235af40b92f6c9 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010000-196612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010000-196612312100.nc + hashes: + binhash: 3ea150b61b6bcf636292c595bf6f8661 + md5: 016380be2a51fd4f8e84341748af2ef9 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010000-196712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010000-196712312100.nc + hashes: + binhash: f6241fe8bda25eba613190b9bb34c349 + md5: 81d91312de7b85cedf8e545be8e41d1f +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010000-196812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010000-196812312100.nc + hashes: + binhash: 057b25f4c8fd8b5975123fb633100266 + md5: 8db9bb63f30aedc87e3701d4c8549cff +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010000-196912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010000-196912312100.nc + hashes: + binhash: 634847f87069d18daa802181f2a6542b + md5: b048f92370b6cb9797c1be2d9c44d795 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010000-197012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010000-197012312100.nc + hashes: + binhash: 879ecfd4c548067c098037433a43a322 + md5: 13c6ebabd25593fe3bdb10e805f6447f +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010000-197112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010000-197112312100.nc + hashes: + binhash: 89a277b9d85259e19b4dc371192e07c2 + md5: ee8442f9a26ad158c9666c109b5a8c39 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010000-197212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010000-197212312100.nc + hashes: + binhash: e33981817dc18c3f7aeffdc600982a78 + md5: 16ecd05941f992a239345bc1edf6d301 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010000-197312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010000-197312312100.nc + hashes: + binhash: 83d8e746d399c63d64819ff6090c368b + md5: 8de6e5efe6c1ac6cec95495ca2c00771 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010000-197412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010000-197412312100.nc + hashes: + binhash: cda30655e9f4a8cc38345cda61bf4b0f + md5: 4a7a5a77bd67def0854b768abdcbe2d3 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010000-197512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010000-197512312100.nc + hashes: + binhash: df8340de1b4ae3fd4681242d9c56eb5f + md5: dde4de1cfbcabc4be21e8ac210c7d248 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010000-197612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010000-197612312100.nc + hashes: + binhash: bec7a6f5377c5e493ef9f6274af47683 + md5: 1f1c727a556cfc499a66b0e0552cb521 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010000-197712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010000-197712312100.nc + hashes: + binhash: d6fa2e1ab5a5f4df2daf837f02225174 + md5: bfd6be883985bbb80a97b1572c2f28cf +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010000-197812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010000-197812312100.nc + hashes: + binhash: d0fb5cee70796ff478d3c8f79317b59f + md5: 53d96b2c4c6fa773168f529c2d1ad1e9 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010000-197912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010000-197912312100.nc + hashes: + binhash: e14e268da8c432a890b6ce6a7df31128 + md5: bb571632efdbefcc2a5b94b1214c1f80 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010000-198012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010000-198012312100.nc + hashes: + binhash: 69909a4c7513d8b539e7f9585e010b37 + md5: 4dcf2b49bae3691da52b316f4219115d +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010000-198112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010000-198112312100.nc + hashes: + binhash: 27839bffada001344f81fa32d024599b + md5: 32ebc7bc24853997e567efabc9810cbc +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010000-198212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010000-198212312100.nc + hashes: + binhash: 74a585f4e14b2fe253142722936fdb13 + md5: c3ffef70433e16714cce6b4f5259d0c5 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010000-198312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010000-198312312100.nc + hashes: + binhash: d53dd01aed069e8952188e312b74cee4 + md5: 6fe0808b9b9c0c9c1605a6cf72a23165 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010000-198412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010000-198412312100.nc + hashes: + binhash: e07e53be00e983d064c33aa929f1c66b + md5: 5bf7099a5d3f47d8e7fd13826e10c3eb +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010000-198512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010000-198512312100.nc + hashes: + binhash: d7617a12d7fc5d1cb0ff189e338e16b5 + md5: 5fa238db37aaa99b93a368d24a9954bf +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010000-198612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010000-198612312100.nc + hashes: + binhash: 5b39541e55a4ae0513550c04b0343425 + md5: a6f7ed5fde24f5f63c8cddf238e62801 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010000-198712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010000-198712312100.nc + hashes: + binhash: 7bd4d5aa83a528639fb2e2145d2c34f6 + md5: d85572c4d7d0e7c1beb2b1243f779b1d +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010000-198812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010000-198812312100.nc + hashes: + binhash: 96977549d613d4aaf3a665713ac25de6 + md5: b473c3f955e6524673d833d8f9c8565f +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010000-198912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010000-198912312100.nc + hashes: + binhash: 8cb7435f3c60589ea108c5fbfa9bf0c3 + md5: c63b0158dc4c3495cae185cf4fb25b71 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010000-199012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010000-199012312100.nc + hashes: + binhash: e93970e12f8c5d1b847c3e2a94d55062 + md5: fb368a91364700083025b03a21b865f7 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010000-199112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010000-199112312100.nc + hashes: + binhash: 8ad632bdae70acde5dc538bb59bc1459 + md5: 02eb59363f0c9e113c74571e20568eac +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010000-199212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010000-199212312100.nc + hashes: + binhash: ec81d1037104ff769e6cc3bdb7645409 + md5: d1d1d09a9703e2ceacc2a0ce526f3a80 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010000-199312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010000-199312312100.nc + hashes: + binhash: e22232bc4ca2e58eb922560ac7abc7eb + md5: c75f827eb1f4f285033a1fcdfc1f1e81 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010000-199412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010000-199412312100.nc + hashes: + binhash: 82a06c8c1ef490e2b231b89355255cc4 + md5: 4beeefd8074fd382e6c65116be3f6af1 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010000-199512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010000-199512312100.nc + hashes: + binhash: f5977be43bcdf5ec5135b7f52af5fefa + md5: 50b8b5ab5512202ff0194f78dd4fdd23 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010000-199612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010000-199612312100.nc + hashes: + binhash: 5c8346dd4c0b92fe23ab1baa4de70837 + md5: 0d24eacd18a5f05883ac89d62279f85c +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010000-199712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010000-199712312100.nc + hashes: + binhash: 7b3c63d0a1f37c67666107db750a04a7 + md5: 88f9d1ea3d7b99d9f799334fc5aae108 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010000-199812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010000-199812312100.nc + hashes: + binhash: c4f91ba4fcd96426f7e6c4b9f8cd9eb9 + md5: 686a9d256403e6a48fadc39cd496a687 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010000-199912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010000-199912312100.nc + hashes: + binhash: d4cbafdd0cd82fee1ac20122822e8137 + md5: a6c30264f73a5d86b36947c2ec5bebe2 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010000-200012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010000-200012312100.nc + hashes: + binhash: 319b699c5a76fabd84214089c6384ebc + md5: 9ba33f0919d77e1ea584cbc7b828b018 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010000-200112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010000-200112312100.nc + hashes: + binhash: 661c4c36a618c729af24a9574c860a86 + md5: f544b1ba7a8c7917784d34a890eaf52a +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010000-200212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010000-200212312100.nc + hashes: + binhash: 97d844ee7580d92f30923657d8b64557 + md5: bfaa66c178378afd5dd918e4a8dc2f81 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010000-200312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010000-200312312100.nc + hashes: + binhash: 8560d5e791c2914b1b73b9cd0b515fd5 + md5: 71889cb0d5e857e86fab8fe4a9d62834 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010000-200412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010000-200412312100.nc + hashes: + binhash: fb93e871966eca389891bb1c354d521a + md5: 61075e4901735b053723e648014f3a2d +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010000-200512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010000-200512312100.nc + hashes: + binhash: 54eb29486a79d55004ccd51e792deaf5 + md5: 32e0233598844ebcf1c5d35ffb24c5c5 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010000-200612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010000-200612312100.nc + hashes: + binhash: b4791ea23834007508d5bed1f7b179b5 + md5: 6e63de950d3590ab0d435fa7804254df +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010000-200712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010000-200712312100.nc + hashes: + binhash: b0a6441173e97466003dce2d487cee9a + md5: e8fc00baa9849bb743ab2edc4bce89dd +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010000-200812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010000-200812312100.nc + hashes: + binhash: 371f564c7ae03d5f035fed97db6596ae + md5: 47f8fcb650feed968fcfe1b4954851ea +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010000-200912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010000-200912312100.nc + hashes: + binhash: 68f60ae18f4962c948359d4fe8420139 + md5: 971c8d6fc7c85d22cc32e39c1a66f990 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010000-201012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010000-201012312100.nc + hashes: + binhash: 1b6ef15d8a65cd3c1160978ccc09058e + md5: 06a3bbb30382d3f580ffa795f45e90c1 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010000-201112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010000-201112312100.nc + hashes: + binhash: c174c53af727340fbd5c57bc29b9bbc0 + md5: 1fc46b4e5b730b4109f3799465d9db3d +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010000-201212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010000-201212312100.nc + hashes: + binhash: 82ae822497a63c9a6081a29bfbe3d2cd + md5: fb6b13062f5340be170642dbab597eae +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010000-201312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010000-201312312100.nc + hashes: + binhash: 05b5c6fa7636f42ca82fd7ce4a9382b5 + md5: 432992a93ce94a989c0e5b4e3b73fae0 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010000-201412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010000-201412312100.nc + hashes: + binhash: 2c8864a380c17169ace3730a3b27810e + md5: 76ae4d3760c6226e5cdb8de18199795b +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010000-201512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010000-201512312100.nc + hashes: + binhash: 94d612001af25e939d3d325a0400450a + md5: 8c2c4bc68475836d56950966a274ea44 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010000-201612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010000-201612312100.nc + hashes: + binhash: d5f4d89b8a444d3b56756482e39cecaa + md5: 2bd32147229d8fa7ca5b296c26d0b9d3 +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010000-201712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010000-201712312100.nc + hashes: + binhash: 842c4cc38724029b04ba34a740d1eefe + md5: 27ba3f7183b755cb314733e0b961eb7a +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010000-201812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010000-201812312100.nc + hashes: + binhash: be0c24bec088f10ed7b15c6204d172eb + md5: a4ef43a69d789594cc1700d3cf3abbfc +work/atmosphere/INPUT/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010000-201901052100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/uas/gr/v20190429/uas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010000-201901052100.nc + hashes: + binhash: a917b6071e8898033e407b67c0b206d4 + md5: f1cdb45f72e9f95dff0c244f005a9c4c +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010000-195812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195801010000-195812312100.nc + hashes: + binhash: 61c59b8ffb7dce2bc8e0c0c91ede4d86 + md5: 34b51a3d8bef9014a2beb8acdc7de5e3 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010000-195912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_195901010000-195912312100.nc + hashes: + binhash: 4bf5afbae0ab42bfdf624c36d439a0eb + md5: ddb1917962604be400897a3f28f27f49 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010000-196012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196001010000-196012312100.nc + hashes: + binhash: 1269862d661eab4df0e26573ee151318 + md5: 6c441e255ca7419f976fd5c7aad02aea +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010000-196112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196101010000-196112312100.nc + hashes: + binhash: 139475fbe54fbd91da1ca539d142d83b + md5: 6ec38549b620d1c9f3d5aee86d5d88ad +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010000-196212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196201010000-196212312100.nc + hashes: + binhash: bd1e32f6cf5452d635ab4c3b607c8d8c + md5: c806c3313394003ce5ddddb1199d4147 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010000-196312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196301010000-196312312100.nc + hashes: + binhash: 9e3b49752b998016dd4dda02841ed2fd + md5: a1ebd3af8f82962ce8c19075717ad6d2 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010000-196412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196401010000-196412312100.nc + hashes: + binhash: f83e0eebf32588826f4498720f9c23f4 + md5: e353bcb0970698ba5259afc9c8b2a671 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010000-196512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196501010000-196512312100.nc + hashes: + binhash: a128236e0e40f493a40635adbdc40e01 + md5: d08d0b065fcceb78ca91ae920da7124a +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010000-196612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196601010000-196612312100.nc + hashes: + binhash: 79616e9a844761987b621db8c9471ee9 + md5: fa9f2ab4c045f9a5bda50f41f278fc5f +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010000-196712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196701010000-196712312100.nc + hashes: + binhash: 7c2f93ae3016ec8e1fa8a5491b52139d + md5: dbe295d9676bd7197378403d14a69b5c +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010000-196812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196801010000-196812312100.nc + hashes: + binhash: b188d4013707f9c0516450cd9ae2ebfd + md5: c3c8fbf4d7207535f623197832f0e913 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010000-196912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_196901010000-196912312100.nc + hashes: + binhash: 5c28fa1b5c3edbd58f3c381aeabcd92f + md5: 91c79321016467a3e5e135307d7e7a05 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010000-197012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197001010000-197012312100.nc + hashes: + binhash: 786eed3bb338d57efb3c2ed837fd7398 + md5: f1d2a03a3fe51b5d10007e531c3590aa +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010000-197112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197101010000-197112312100.nc + hashes: + binhash: 5777e3c593aff7b220ad97d8c0e72355 + md5: fcbc9ec3adff83f58e9bf7d17f776a41 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010000-197212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197201010000-197212312100.nc + hashes: + binhash: 3c05b52f25246c5f80c72a2fbfa72def + md5: 9b8588004d361177bb7e906d8c64a3e8 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010000-197312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197301010000-197312312100.nc + hashes: + binhash: 5b34ec9f8c61540f6c9a29976916c520 + md5: 2e63bc734aacc19015899dd1800df881 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010000-197412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197401010000-197412312100.nc + hashes: + binhash: f3bc4cb2f1fcb4e1f6da93f00159bc60 + md5: 4a136963ca9351164c810c8695bce9e0 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010000-197512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197501010000-197512312100.nc + hashes: + binhash: 4ea210b0422be98921aeab3cbfead1ee + md5: 4604f3fbd5c54c34b939e75e4676fe72 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010000-197612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197601010000-197612312100.nc + hashes: + binhash: 8ce12874304322d7bbde02feead0fa38 + md5: bfec1cfa1ef90b80d908d103b7a840b4 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010000-197712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197701010000-197712312100.nc + hashes: + binhash: 283d1a3e860f475be98608c8948a9d05 + md5: be6553575de65740c3b6bc3b2b332d29 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010000-197812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197801010000-197812312100.nc + hashes: + binhash: 937feaf02bb1bfa2d67309b0385abd48 + md5: fe002bad672ea7a998e8e059eff6ba79 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010000-197912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_197901010000-197912312100.nc + hashes: + binhash: 0e13ada75390e866a4c31ac0d7dc8788 + md5: 1a7f05e337e417d9917e0fb388c7cc7d +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010000-198012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198001010000-198012312100.nc + hashes: + binhash: 305d57f1e4cf26766bc75e1a4310a3a4 + md5: 904518781f829ae03ea3705232a94a70 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010000-198112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198101010000-198112312100.nc + hashes: + binhash: 87323493d808b28a28d2710f14dd3a1a + md5: d3ada444665daaf58dc745e4b4227dec +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010000-198212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198201010000-198212312100.nc + hashes: + binhash: 9d95918da0172c10cec6329e55dfd9bf + md5: f32f3287929b0bbd5aa76f49e64d3c31 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010000-198312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198301010000-198312312100.nc + hashes: + binhash: b0595a54bdee18550cf19a459e23bbba + md5: e0a90943ec115c803dd6e3675fb42ee5 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010000-198412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198401010000-198412312100.nc + hashes: + binhash: b68e0b82911c20aec05ec7b8262080b5 + md5: 0dbfe35bbbfd0131ca08ec840db3f06b +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010000-198512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198501010000-198512312100.nc + hashes: + binhash: 4448d42a6745fad9434d74c06f94e517 + md5: 85e580c1419a65d2a0885455589c8996 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010000-198612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198601010000-198612312100.nc + hashes: + binhash: a6b6bde185116c2c564914559f85d11c + md5: 2276cb6bebb9fd16370d5bdb960bb931 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010000-198712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198701010000-198712312100.nc + hashes: + binhash: e8a9e8e7b655fc99a4ad7f83f2e7becf + md5: db42c2ff03b58dbce1d66c910553c599 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010000-198812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198801010000-198812312100.nc + hashes: + binhash: c300fb29c0bd6c4ae159fcbd4f876694 + md5: d107efccaeeb28cd13fd46274dc839a1 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010000-198912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_198901010000-198912312100.nc + hashes: + binhash: 846f99d32de7c27704ffcf9a3070bea0 + md5: 0666a7b4c1fd85e6f5b043e3defc29bb +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010000-199012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199001010000-199012312100.nc + hashes: + binhash: 093ba15e07b8ed844acaa6c85b56e8d8 + md5: 311bb85b5c2c287ba63ed8dad582cc62 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010000-199112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199101010000-199112312100.nc + hashes: + binhash: a6d1319669e7edf32f9d121f70a6bea1 + md5: 187a3f9011352bf632d257326ecb8528 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010000-199212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199201010000-199212312100.nc + hashes: + binhash: d6b2a1e888daf6b3c47a4463557f11ac + md5: 9c6e60b0bba5f8642ed2a058750aa072 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010000-199312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199301010000-199312312100.nc + hashes: + binhash: 280f71dc0150232c8e7ad5bffd1e86d3 + md5: 26657a654aca7e84e2a5244173936862 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010000-199412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199401010000-199412312100.nc + hashes: + binhash: dc8124edf27b116b8e8456b26f9d41b6 + md5: fcdebb25b2b85f45529bb5e15c68623d +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010000-199512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199501010000-199512312100.nc + hashes: + binhash: d4380400f84abc328e16a6a3a9ce1417 + md5: a344ec958616e168e5c7071afeb5c7b7 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010000-199612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199601010000-199612312100.nc + hashes: + binhash: a36efebc8a946572dad9addd17eaa816 + md5: 71b72e35615751eaae8fa32116e6d89d +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010000-199712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199701010000-199712312100.nc + hashes: + binhash: c11437ded75eda56792420d1b0e33c50 + md5: 912db46ddb7bb9a02d76c2be71703b9d +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010000-199812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199801010000-199812312100.nc + hashes: + binhash: a2205019a3ebf2c44c0ae2c356b468bc + md5: 01f712eaebb7841b1a8e796adc5b33e2 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010000-199912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_199901010000-199912312100.nc + hashes: + binhash: 46de049283775377ba5d57acd5f620d3 + md5: 3912a4b215df3320324cdebfb7e7513f +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010000-200012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200001010000-200012312100.nc + hashes: + binhash: 8a49f1ba36d152313eec26f4f06af23d + md5: 0745dec78a93e1f3488587cd050ff486 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010000-200112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200101010000-200112312100.nc + hashes: + binhash: 6db51ad265f0484a117d1e87e59b9fa9 + md5: 82b1b88df183529963f1657a9aaa4766 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010000-200212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200201010000-200212312100.nc + hashes: + binhash: 93959cde9c71f5474a798214c9585c13 + md5: d662e64b0bfb54c3794bd9dbb4d3f31f +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010000-200312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200301010000-200312312100.nc + hashes: + binhash: 9ecb459e4cf040a4681d3a60056aff22 + md5: fdc2192c0c33e9563b39d3c871688779 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010000-200412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200401010000-200412312100.nc + hashes: + binhash: 04b8691cc7049a2bbc95fe5d337dee76 + md5: c78cd603799af1722ddac97015baa27d +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010000-200512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200501010000-200512312100.nc + hashes: + binhash: 6aa2fca7cc7896766649a4980087ea0f + md5: b837ae6bdb1acfe3f74284d415ddc143 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010000-200612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200601010000-200612312100.nc + hashes: + binhash: b0bd5d4a9ca57e201844047962e469cd + md5: b8b20b2ab2469e92221afd89a47301fc +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010000-200712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200701010000-200712312100.nc + hashes: + binhash: 67a06f5fa0c2e0ff8efe5ca14a25641b + md5: a570bf5208c6250492fd56713804a270 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010000-200812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200801010000-200812312100.nc + hashes: + binhash: 0d757590d89e5d9fd9ea7fdd43ca37e8 + md5: 587eb63bbeb9d04ffb73af653b8b8f25 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010000-200912312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_200901010000-200912312100.nc + hashes: + binhash: 6f84f7a245bd828f5b5aed43514c823c + md5: 04b8172af5f31112b06235ac32b78487 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010000-201012312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201001010000-201012312100.nc + hashes: + binhash: 2601229f4ba045698a2b7f9470782f9d + md5: 5603fd2c82b0f7a6b6f0c93b0dbea066 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010000-201112312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201101010000-201112312100.nc + hashes: + binhash: c717c815f18ecaabaa01681e3f709a1d + md5: 497230e268dfa4767c6b30f443315902 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010000-201212312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201201010000-201212312100.nc + hashes: + binhash: 75ba41703dc3b91e3e4358310b8a2b37 + md5: f7bbb9b4c29028f863467b3dfba4a5d1 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010000-201312312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201301010000-201312312100.nc + hashes: + binhash: ebffde84d0b908f33f28f68bb36b15b8 + md5: 5ec419b37c7cb897e59db8a78c1e8411 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010000-201412312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201401010000-201412312100.nc + hashes: + binhash: 5ca1d749898d5b8160e1f2d87fe9975f + md5: cb6d1d597c60a921bd77cdf95c693756 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010000-201512312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201501010000-201512312100.nc + hashes: + binhash: 158e4500a4fc4e652c0e2f4294083317 + md5: 6b3f2a45e1726d0f413ee544856040cf +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010000-201612312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201601010000-201612312100.nc + hashes: + binhash: e4e193e82ca2e5714717fea79d5657ab + md5: 4e42b2e7833ffedc460d03ec05fa1adc +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010000-201712312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201701010000-201712312100.nc + hashes: + binhash: d472f4f3d031ae55ae36a60a95f822c0 + md5: 93a327f3d3c4a44bbac963d8995e7b2a +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010000-201812312100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201801010000-201812312100.nc + hashes: + binhash: e682da20a0898e6a75e46276c1f4df61 + md5: 9df926d557e339b6abdb7a046451b9c4 +work/atmosphere/INPUT/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010000-201901052100.nc: + fullpath: /g/data/qv56/replicas/input4MIPs/CMIP6/OMIP/MRI/MRI-JRA55-do-1-4-0/atmos/3hrPt/vas/gr/v20190429/vas_input4MIPs_atmosphericState_OMIP_MRI-JRA55-do-1-4-0_gr_201901010000-201901052100.nc + hashes: + binhash: 987ff85784eff1316d6929f631fe1426 + md5: b0e514bfac0d9dfbf538d36b8ecd17f9 +work/ice/RESTART/grid.nc: + copy: true + fullpath: /g/data/vk83/experiments/inputs/access-om2/ice/grids/global.1deg/2020.05.30/grid.nc + hashes: + binhash: e7108317ae28b1f9ae77711728925cb6 + md5: 1213e346055ee073fe33dc12578d99c6 +work/ice/RESTART/i2o.nc: + copy: true + fullpath: /g/data/vk83/experiments/inputs/access-om2/ice/initial_conditions/global.1deg/2020.05.30/i2o.nc + hashes: + binhash: 527d494c80b2a3418645b962fd8706d0 + md5: c96e06c3c80c0f680545db59ed3349e5 +work/ice/RESTART/kmt.nc: + copy: true + fullpath: /g/data/vk83/experiments/inputs/access-om2/ice/grids/global.1deg/2020.10.22/kmt.nc + hashes: + binhash: 13a23d6d9331abc9d677c6fd466a4433 + md5: 1f9806c646a620378e5257e480bc9df7 +work/ice/RESTART/monthly_sstsss.nc: + copy: true + fullpath: /g/data/vk83/experiments/inputs/access-om2/ice/initial_conditions/global.1deg/2020.05.30/monthly_sstsss.nc + hashes: + binhash: 66f44d84fada351d4ebf05f196762d8c + md5: 323d4c605f83f4d7d3126da70153c2ed +work/ice/RESTART/o2i.nc: + copy: true + fullpath: /g/data/vk83/experiments/inputs/access-om2/ice/initial_conditions/global.1deg/2020.05.30/o2i.nc + hashes: + binhash: 56f258e931a8eda2fc42b3a315d485eb + md5: 3498246dcd7da40d3b8c6b4a908b260f +work/ice/RESTART/u_star.nc: + copy: true + fullpath: /g/data/vk83/experiments/inputs/access-om2/ice/initial_conditions/global.1deg/2020.05.30/u_star.nc + hashes: + binhash: f93a19930c5c59e03751e70a123ab01f + md5: 68cf0ef92576f96ef085cd7f243d0c39 +work/ocean/INPUT/chl.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/ocean/chlorophyll/global.1deg/2020.05.30/chl.nc + hashes: + binhash: 05b3313121bbb9825a20f0fb58901b21 + md5: a7aa5bcf4a3b9fa8102edd3b6b67c3a2 +work/ocean/INPUT/grid_spec.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/ocean/grids/mosaic/global.1deg/2020.05.30/grid_spec.nc + hashes: + binhash: 587ca8eb0cbc978232fe55a7bff054c9 + md5: 027d2f8fb1eda3ef1cf0a3f520a217f7 +work/ocean/INPUT/ocean_hgrid.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/ocean/grids/mosaic/global.1deg/2020.05.30/ocean_hgrid.nc + hashes: + binhash: 87d66edc0ef57c97b758a3049bfe8a14 + md5: 51f58be0f4ea6da2cb438a893f95c689 +work/ocean/INPUT/ocean_mask.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/ocean/grids/bathymetry/global.1deg/2020.10.22/ocean_mask.nc + hashes: + binhash: ab10098b71d76ba5fcf0ea9e007a90e5 + md5: 411567441c64bcfa814259736c5ed1a3 +work/ocean/INPUT/ocean_mask_table: + fullpath: /g/data/vk83/experiments/inputs/access-om2/ocean/processor_masks/global.1deg/216.16x15/2020.05.30/ocean_mask_table + hashes: + binhash: dc68931f1bb40bcd75a98d209b47d4c4 + md5: 2203b38758fb2b56a145ef16b7872af9 +work/ocean/INPUT/ocean_mosaic.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/ocean/grids/mosaic/global.1deg/2020.05.30/ocean_mosaic.nc + hashes: + binhash: 6aadd388078defe3f80df6f3de77b4bd + md5: cb42e630ee31d3686156fcbdc2f9d07c +work/ocean/INPUT/ocean_temp_salt.res.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/ocean/initial_conditions/global.1deg/2020.10.22/ocean_temp_salt.res.nc + hashes: + binhash: 1530c856cbbc9b5073bdf3e7beb72cd7 + md5: c5f7e60b5427a4442f111adc65a2d067 +work/ocean/INPUT/ocean_vgrid.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/ocean/grids/vertical/global.1deg/2020.10.22/ocean_vgrid.nc + hashes: + binhash: cd9ef67b8cf6d4ea0c78554ac38e1bc3 + md5: 339ff716e3019a86fc861498e674250a +work/ocean/INPUT/roughness_amp.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/ocean/tides/global.1deg/2020.05.30/roughness_amp.nc + hashes: + binhash: 73a425be9e5cf7a3d349d75a8ebeadd1 + md5: 185dadeb53da2de75b47c53fd7085f89 +work/ocean/INPUT/roughness_cdbot.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/ocean/tides/global.1deg/2020.05.30/roughness_cdbot.nc + hashes: + binhash: 4ec236c3874fbd4dc5c2fcdec271f557 + md5: b50f0595f3ebc872cbcf5f3223115643 +work/ocean/INPUT/salt_sfc_restore.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/ocean/surface_salt_restoring/global.1deg/2020.05.30/salt_sfc_restore.nc + hashes: + binhash: 13101e8424f559b6c172ef86d85b9a8f + md5: b2bd35c44017597ba99b85fb61ed4d72 +work/ocean/INPUT/tideamp.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/ocean/tides/global.1deg/2020.05.30/tideamp.nc + hashes: + binhash: 0226a494f8a03f8fb9845060cb694389 + md5: b2840af757d9b7b40207f33f1fc84c5c +work/ocean/INPUT/topog.nc: + fullpath: /g/data/vk83/experiments/inputs/access-om2/ocean/grids/bathymetry/global.1deg/2020.10.22/topog.nc + hashes: + binhash: 8ab65e521a588943b533b188a619d361 + md5: 4e13d88001b646f3cf4f1c3b8db59f91 diff --git a/manifests/restart.yaml b/manifests/restart.yaml new file mode 100644 index 0000000..f1e1197 --- /dev/null +++ b/manifests/restart.yaml @@ -0,0 +1,3 @@ +format: yamanifest +version: 1.0 +--- {} diff --git a/metadata.yaml b/metadata.yaml new file mode 100644 index 0000000..50a043b --- /dev/null +++ b/metadata.yaml @@ -0,0 +1,34 @@ +contact: Add your name here +email: Add your email address here +created: Add the date you started the experiment here (YYYY-MM-DD) +description: |- + 1 degree ACCESS-OM2 global model configuration under interannual forcing. + The configuration is based on that described in Kiss et al. (2020), + https://doi.org/10.5194/gmd-13-401-2020, but with many improvements. + Initial conditions are WOA13v2 potential temperature and practical salinity. + Run with JRA55-do v1.4.0 interannually-varying forcing with all solid runoff + converted to liquid runoff with no heat transfer. + Spin up starts 1 Jan 1958 and runs to 1 Jan 2019. +notes: |- + COSIMA request that users of this or other ACCESS-OM2 model code or output data: + (a) consider citing Kiss et al. (2020) [http://doi.org/10.5194/gmd-13-401-2020] + (b) include an acknowledgement such as the following: + "The authors thank the Consortium for Ocean-Sea Ice Modelling in Australia (COSIMA; http://www.cosima.org.au) + for making the ACCESS-OM2 suite of models available at https://github.com/COSIMA/access-om2. + Model runs were undertaken with the assistance of resources from the National Computational Infrastructure (NCI), + which is supported by the Australian Government." + (c) let COSIMA know of any publications which use these models or data so they can add them to their list: + https://scholar.google.com/citations?hl=en&user=inVqu_4AAAAJ +keywords: + - JRA55 + - access-om2 + - interannual + - global +realm: + - ocean + - seaIce +nominal_resolution: 100 km +reference: https://doi.org/10.5194/gmd-13-401-2020 +license: CC-BY-4.0 +model: access-om2 +url: https://github.com/ACCESS-NRI/access-om2-configs/tree/release-1deg_jra55_iaf diff --git a/namcouple b/namcouple new file mode 100644 index 0000000..2a44983 --- /dev/null +++ b/namcouple @@ -0,0 +1,307 @@ +# This is a typical input file for OASIS 3.0, using netCDF format +# for restart input files. Oasis reads this file at run-time. +# +# Any line beginning with # is ignored. Blank lines are not allowed. +# +# $SEQMODE +# This keyword concerns the coupling algorithm. Put here the maximum number +# of fields that have to be, at one particular coupling timestep, +# necessarily exchanged sequentially in a given order. +# 1 +# $END +######################################################################### + + $NFIELDS +# This is the total number of fields being exchanged. +### 11 fields atm -> ice +### 17 fields ice -> ocn +### 7 fields ocn -> ice + 35 + $END +######################################################################### +# $JOBNAME +# This is an acronym for this run. +# (3 characters) +# OIA +# $END +########################################################################## + $NBMODEL +# This gives you the number of models running in this experiment + +# their names (character*6, exactly!) + , in option, the maximum Fortran unit +# number used by each model; 1024 will be used if none are given. +# + 3 cicexx matmxx mom5xx + $END +########################################################################### + $RUNTIME +# This gives you the total simulated time for this run in seconds +# This is not used but needs to be >= to the timestep to satisfy error checking. +# See https://github.com/COSIMA/oasis3-mct/issues/3 + 864000 + $END +########################################################################### +# $INIDATE +# This is the initial date of the run. This is important only if +# FILLING analysis is used for a coupling field in the run. +# The format is YYYYMMDD such as 19910101 +# #Inidate +# $END +########################################################################### +# $MODINFO +# Indicates if a header is encapsulated within the field brick +# in binary restart files for all communication techniques, and +# for coupling field exchanges for PIPE, SIPC and GMEM. +# (YES or NOT) +# NOT +# $END +########################################################################### + $NLOGPRT +# Index of printing level in output file cplout: 0 = no printing +# 1 = main routines and field names when treated, 2 = complete output + 0 + $END +########################################################################### +# $CALTYPE +# Calendar type : 0 = 365 day calendar (no leap years) +# 1 = 365 day, or 366 days for leap years, calendar +# n (>1) = n day month calendar +# This is important only if FILLING analysis is used for a coupling +# field in the run. +# +# #Caltype +# $END +########################################################################### + $STRINGS +# +# The above variables are the general parameters for the experiment. +# Everything below has to do with the fields being exchanged. +# +############################################################################ +# --- note file cf_name_table.txt does not include all the coupling flds --- +# --- listed below. so the fld number (367 for swfld etc) may not point --- +# --- to the realistic 'longname' of the variable. (may modify this file --- +# --- to add more fields in the future.) +############################################################################ +# +# ATMOSPHERE --->>> ICE +# ----------------------- +########## +# Field 01 : swflx down +########## +swfld_ai swfld_i -1 -1 1 NA EXPORTED +NA NA +P 0 P 0 +# +MAPPING +../INPUT/rmp_jra55_cice_1st_conserve.nc dst +######### +# Field 02 : lwflx down +########## +lwfld_ai lwfld_i -1 -1 1 NA EXPORTED +NA NA +P 0 P 0 +# +MAPPING +../INPUT/rmp_jra55_cice_1st_conserve.nc dst +########## +# Field 03 : rainfall +########## +rain_ai rain_i -1 -1 1 NA EXPORTED +NA NA +P 0 P 0 +# +MAPPING +../INPUT/rmp_jra55_cice_1st_conserve.nc dst +########## +# Field 04 : snowfall +########## +snow_ai snow_i -1 -1 1 NA EXPORTED +NA NA +P 0 P 0 +# +MAPPING +../INPUT/rmp_jra55_cice_1st_conserve.nc dst +########## +# Field 05 : surface pressure +########## +press_ai press_i -1 -1 1 NA EXPORTED +NA NA +P 0 P 0 +# +MAPPING +../INPUT/rmp_jra55_cice_patch.nc dst +########## +# Field 06 : runoff. Runoff is passed on the destination grid. +########## +runof_ai runof_i -2 -1 0 NA IGNORED +NA NA +########## +# Field 07 : near surface (2m) air temp +########## +tair_ai tair_i -1 -1 1 NA EXPORTED +NA NA +P 0 P 0 +# +MAPPING +../INPUT/rmp_jra55_cice_patch.nc dst +########## +# Field 08 : 2m air humidity +########## +qair_ai qair_i -1 -1 1 NA EXPORTED +NA NA +P 0 P 0 +# +MAPPING +../INPUT/rmp_jra55_cice_patch.nc dst +########## +# Field 09 : 10m wind (u) +########## +uwnd_ai uwnd_i -1 -1 1 NA EXPORTED +NA NA +P 0 P 0 +# +MAPPING +../INPUT/rmp_jra55_cice_patch.nc dst +########## +# Field 10 : 10m wind (v) +########## +vwnd_ai vwnd_i -1 -1 1 NA EXPORTED +NA NA +P 0 P 0 +# +MAPPING +../INPUT/rmp_jra55_cice_patch.nc dst +########## +# Field 11 : land ice calving flux, like runoff it is passed on the destination grid +########## +licalvf_ai licalvf_i -1 -1 0 NA IGNORED +NA NA +############################################################################ +# +# ICE --->>> OCEAN +# ---------------- +########## +# Field 12 : ice-ocean interface stress (x-direction) +########## +strsu_io u_flux -1 -1 0 i2o.nc IGNORED +NA NA +########## +# Field 13 : ice-ocean interface stress (y-direction) +########## +strsv_io v_flux -1 -1 0 i2o.nc IGNORED +NA NA +########## +# Field 14 : freshwater flux +########## +rain_io lprec -1 -1 0 i2o.nc IGNORED +NA NA +########## +# Field 15 : freshwater flux +########## +snow_io fprec -1 -1 0 i2o.nc IGNORED +NA NA +########## +# Field 16 : salt flux (no ref no for saltflux yet!) +########## +stflx_io salt_flx -1 -1 0 i2o.nc IGNORED +NA NA +########## +# Field 17 : next heat flux (heatflux into ocean) +########## +htflx_io mh_flux -1 -1 0 i2o.nc IGNORED +NA NA +########## +# Field 18 : swflux penetrating through ice into ocean +######### +swflx_io sw_flux -1 -1 0 i2o.nc IGNORED +NA NA +########## +# Field 19 : latent heat flux +########## +qflux_io q_flux -1 -1 0 i2o.nc IGNORED +NA NA +######### +# Field 20 : Sensible heat flux +########## +shflx_io t_flux -1 -1 0 i2o.nc IGNORED +NA NA +########## +# Field 21 : LW radiation flux down +########## +lwflx_io lw_flux -1 -1 0 i2o.nc IGNORED +NA NA +########## +# Field 22 : runoff +########## +runof_io runof -1 -1 0 i2o.nc IGNORED +NA NA +########## +# Field 23 : surface pressure +########## +press_io p -1 -1 0 i2o.nc IGNORED +NA NA +########## +# Field 24 : ice concentration +########## +aice_io aice -1 -1 0 i2o.nc IGNORED +NA NA +########## +# Field 25 : ice melting waterflux +########## +melt_io wfimelt -1 -1 0 i2o.nc IGNORED +NA NA +########## +# Field 26 : ice forming eaterflux +########## +form_io wfiform -1 -1 0 i2o.nc IGNORED +NA NA +########## +# Field 27 : land ice waterflux +########## +licefw_io licefw -1 -1 0 i2o.nc IGNORED +NA NA +########## +# Field 28 : land ice heatflux +########## +licefh_io liceht -1 -1 0 i2o.nc IGNORED +NA NA +############################################################################ +# +# OCEAN --->>> ICE +# ---------------- +########## +# Field 29 : Sea surface temperature (Celsius in MOM4, Kelvin in MOM5) +########## +t_surf sst_i -1 -1 0 o2i.nc IGNORED +NA NA +########## +# Field 30 : Sea surface salinity (psu) +########## +s_surf sss_i -1 -1 0 o2i.nc IGNORED +NA NA +########## +# Field 31 : 'eastward' sea surface water velocity +########## +u_surf ssu_i -1 -1 0 o2i.nc IGNORED +NA NA +########## +# Field 32 : 'northward' sea surface water velocity +########## +v_surf ssv_i -1 -1 0 o2i.nc IGNORED +NA NA +########## +# Field 33 : frazil ice fromation energy (J/m^2) +########## +frazil pfmice_i -1 -1 0 o2i.nc IGNORED +NA NA +########## +# Field 34 : sea surface slope _x_ (m/m) +########## +dssldx sslx_i -1 -1 0 o2i.nc IGNORED +NA NA +########## +# Field 35 : sea surface slope _y_ (m/m) +########## +dssldy ssly_i -1 -1 0 o2i.nc IGNORED +NA NA + $END diff --git a/ocean/data_table b/ocean/data_table new file mode 100644 index 0000000..5c5e9b4 --- /dev/null +++ b/ocean/data_table @@ -0,0 +1,13 @@ +# format for data_table: +# gridname, fieldname_code, fieldname_file, filename, ongrid, factor +# If user wants to override fieldname_code with a const set fieldname_file = "" +# and factor = const +# B: in coupled mode, none of the below is required. +#B "OCN", "u_flux", "taux" , "INPUT/tau.nc",.false.,0.0 +#B "OCN", "v_flux", "tauy" , "INPUT/tau.nc",.false.,0.0 +#B "OCN", "sw_flux","sw_flux","INPUT/sw_flux.nc",.false.,0.0 +#B "OCN", "lw_flux","lw_flux","INPUT/lw_flux.nc",.false.,0.0 +#B "OCN", "lprec","pme","INPUT/pme_flux.nc",.false.,1.0 +#B "OCN", "t_flux","","",.false.,0.0 +#B "OCN", "q_flux","","",.false.,0.0 +#B "OCN", "p","","",.false.,0.0 diff --git a/ocean/diag_table b/ocean/diag_table new file mode 100644 index 0000000..0083b40 --- /dev/null +++ b/ocean/diag_table @@ -0,0 +1,392 @@ +ACCESS-OM2 +1900 1 1 0 0 0 + +######################################################################################################### +# # +# DO NOT EDIT! Instead, edit diag_table_source.yaml and run make_diag_table.py to re-generate this file # +# # +######################################################################################################### + + +# static 2d grid data + +"ocean-2d-area_t", -1, "months", 1, "days", "time" +"ocean_model", "area_t", "area_t", "ocean-2d-area_t", "all", "none", "none", 2 + +"ocean-2d-area_u", -1, "months", 1, "days", "time" +"ocean_model", "area_u", "area_u", "ocean-2d-area_u", "all", "none", "none", 2 + +"ocean-2d-drag_coeff", -1, "months", 1, "days", "time" +"ocean_model", "drag_coeff", "drag_coeff", "ocean-2d-drag_coeff", "all", "none", "none", 2 + +"ocean-2d-dxt", -1, "months", 1, "days", "time" +"ocean_model", "dxt", "dxt", "ocean-2d-dxt", "all", "none", "none", 2 + +"ocean-2d-dxu", -1, "months", 1, "days", "time" +"ocean_model", "dxu", "dxu", "ocean-2d-dxu", "all", "none", "none", 2 + +"ocean-2d-dyt", -1, "months", 1, "days", "time" +"ocean_model", "dyt", "dyt", "ocean-2d-dyt", "all", "none", "none", 2 + +"ocean-2d-dyu", -1, "months", 1, "days", "time" +"ocean_model", "dyu", "dyu", "ocean-2d-dyu", "all", "none", "none", 2 + +"ocean-2d-geolat_c", -1, "months", 1, "days", "time" +"ocean_model", "geolat_c", "geolat_c", "ocean-2d-geolat_c", "all", "none", "none", 2 + +"ocean-2d-geolat_t", -1, "months", 1, "days", "time" +"ocean_model", "geolat_t", "geolat_t", "ocean-2d-geolat_t", "all", "none", "none", 2 + +"ocean-2d-geolon_c", -1, "months", 1, "days", "time" +"ocean_model", "geolon_c", "geolon_c", "ocean-2d-geolon_c", "all", "none", "none", 2 + +"ocean-2d-geolon_t", -1, "months", 1, "days", "time" +"ocean_model", "geolon_t", "geolon_t", "ocean-2d-geolon_t", "all", "none", "none", 2 + +"ocean-2d-ht", -1, "months", 1, "days", "time" +"ocean_model", "ht", "ht", "ocean-2d-ht", "all", "none", "none", 2 + +"ocean-2d-hu", -1, "months", 1, "days", "time" +"ocean_model", "hu", "hu", "ocean-2d-hu", "all", "none", "none", 2 + +"ocean-2d-kmt", -1, "months", 1, "days", "time" +"ocean_model", "kmt", "kmt", "ocean-2d-kmt", "all", "none", "none", 2 + +"ocean-2d-kmu", -1, "months", 1, "days", "time" +"ocean_model", "kmu", "kmu", "ocean-2d-kmu", "all", "none", "none", 2 + + +# monthly 3d fields + +"ocean-3d-age_global-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "age_global", "age_global", "ocean-3d-age_global-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-buoyfreq2_wt-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "buoyfreq2_wt", "buoyfreq2_wt", "ocean-3d-buoyfreq2_wt-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-diff_cbt_t-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "diff_cbt_t", "diff_cbt_t", "ocean-3d-diff_cbt_t-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-dzt-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "dzt", "dzt", "ocean-3d-dzt-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-pot_rho_0-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "pot_rho_0", "pot_rho_0", "ocean-3d-pot_rho_0-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-pot_rho_2-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "pot_rho_2", "pot_rho_2", "ocean-3d-pot_rho_2-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-pot_temp-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "pot_temp", "pot_temp", "ocean-3d-pot_temp-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-salt-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "salt", "salt", "ocean-3d-salt-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-temp_xflux_adv-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "temp_xflux_adv", "temp_xflux_adv", "ocean-3d-temp_xflux_adv-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-temp_yflux_adv-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "temp_yflux_adv", "temp_yflux_adv", "ocean-3d-temp_yflux_adv-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-temp-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "temp", "temp", "ocean-3d-temp-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-tx_trans-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "tx_trans", "tx_trans", "ocean-3d-tx_trans-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-ty_trans_gm-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "ty_trans_gm", "ty_trans_gm", "ocean-3d-ty_trans_gm-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-ty_trans_nrho_submeso-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "ty_trans_nrho_submeso", "ty_trans_nrho_submeso", "ocean-3d-ty_trans_nrho_submeso-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-ty_trans_rho_gm-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "ty_trans_rho_gm", "ty_trans_rho_gm", "ocean-3d-ty_trans_rho_gm-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-ty_trans_rho-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "ty_trans_rho", "ty_trans_rho", "ocean-3d-ty_trans_rho-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-ty_trans_submeso-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "ty_trans_submeso", "ty_trans_submeso", "ocean-3d-ty_trans_submeso-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-ty_trans-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "ty_trans", "ty_trans", "ocean-3d-ty_trans-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-u-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "u", "u", "ocean-3d-u-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-v-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "v", "v", "ocean-3d-v-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-vert_pv-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "vert_pv", "vert_pv", "ocean-3d-vert_pv-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-3d-wt-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "wt", "wt", "ocean-3d-wt-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + + +# monthly 3d squared fields + +"ocean-3d-u-1-monthly-pow02-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "u", "u", "ocean-3d-u-1-monthly-pow02-ym%4yr%2mo", "all", "pow02", "none", 2 + +"ocean-3d-v-1-monthly-pow02-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "v", "v", "ocean-3d-v-1-monthly-pow02-ym%4yr%2mo", "all", "pow02", "none", 2 + + +# monthly 2d fields + +"ocean-2d-agm-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "agm", "agm", "ocean-2d-agm-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-aredi-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "aredi", "aredi", "ocean-2d-aredi-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-bmf_u-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "bmf_u", "bmf_u", "ocean-2d-bmf_u-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-bmf_v-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "bmf_v", "bmf_v", "ocean-2d-bmf_v-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-ekman_we-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "ekman_we", "ekman_we", "ocean-2d-ekman_we-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-eta_nonbouss-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "eta_nonbouss", "eta_nonbouss", "ocean-2d-eta_nonbouss-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-evap_heat-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "evap_heat", "evap_heat", "ocean-2d-evap_heat-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-evap-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "evap", "evap", "ocean-2d-evap-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-fprec_melt_heat-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "fprec_melt_heat", "fprec_melt_heat", "ocean-2d-fprec_melt_heat-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-fprec-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "fprec", "fprec", "ocean-2d-fprec-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-frazil_3d_int_z-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "frazil_3d_int_z", "frazil_3d_int_z", "ocean-2d-frazil_3d_int_z-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-lprec-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "lprec", "lprec", "ocean-2d-lprec-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-lw_heat-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "lw_heat", "lw_heat", "ocean-2d-lw_heat-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-melt-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "melt", "melt", "ocean-2d-melt-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-mh_flux-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "mh_flux", "mh_flux", "ocean-2d-mh_flux-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-mld-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "mld", "mld", "ocean-2d-mld-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-net_sfc_heating-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "net_sfc_heating", "net_sfc_heating", "ocean-2d-net_sfc_heating-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-pbot_t-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "pbot_t", "pbot_t", "ocean-2d-pbot_t-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-pme_net-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "pme_net", "pme_net", "ocean-2d-pme_net-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-pme_river-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "pme_river", "pme_river", "ocean-2d-pme_river-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-river-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "river", "river", "ocean-2d-river-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-runoff-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "runoff", "runoff", "ocean-2d-runoff-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-sea_level_sq-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "sea_level_sq", "sea_level_sq", "ocean-2d-sea_level_sq-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-sea_level-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "sea_level", "sea_level", "ocean-2d-sea_level-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-sens_heat-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "sens_heat", "sens_heat", "ocean-2d-sens_heat-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-sfc_hflux_coupler-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "sfc_hflux_coupler", "sfc_hflux_coupler", "ocean-2d-sfc_hflux_coupler-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-sfc_hflux_from_runoff-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "sfc_hflux_from_runoff", "sfc_hflux_from_runoff", "ocean-2d-sfc_hflux_from_runoff-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-sfc_hflux_pme-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "sfc_hflux_pme", "sfc_hflux_pme", "ocean-2d-sfc_hflux_pme-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-sfc_salt_flux_coupler-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "sfc_salt_flux_coupler", "sfc_salt_flux_coupler", "ocean-2d-sfc_salt_flux_coupler-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-sfc_salt_flux_ice-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "sfc_salt_flux_ice", "sfc_salt_flux_ice", "ocean-2d-sfc_salt_flux_ice-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-sfc_salt_flux_restore-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "sfc_salt_flux_restore", "sfc_salt_flux_restore", "ocean-2d-sfc_salt_flux_restore-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-surface_pot_temp-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "surface_pot_temp", "surface_pot_temp", "ocean-2d-surface_pot_temp-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-surface_salt-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "surface_salt", "surface_salt", "ocean-2d-surface_salt-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-swflx-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "swflx", "swflx", "ocean-2d-swflx-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-tau_x-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "tau_x", "tau_x", "ocean-2d-tau_x-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-tau_y-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "tau_y", "tau_y", "ocean-2d-tau_y-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-temp_int_rhodz-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "temp_int_rhodz", "temp_int_rhodz", "ocean-2d-temp_int_rhodz-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-temp_xflux_adv_int_z-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "temp_xflux_adv_int_z", "temp_xflux_adv_int_z", "ocean-2d-temp_xflux_adv_int_z-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-temp_xflux_gm_int_z-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "temp_xflux_gm_int_z", "temp_xflux_gm_int_z", "ocean-2d-temp_xflux_gm_int_z-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-temp_xflux_ndiffuse_int_z-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "temp_xflux_ndiffuse_int_z", "temp_xflux_ndiffuse_int_z", "ocean-2d-temp_xflux_ndiffuse_int_z-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-temp_xflux_submeso_int_z-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "temp_xflux_submeso_int_z", "temp_xflux_submeso_int_z", "ocean-2d-temp_xflux_submeso_int_z-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-temp_yflux_adv_int_z-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "temp_yflux_adv_int_z", "temp_yflux_adv_int_z", "ocean-2d-temp_yflux_adv_int_z-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-temp_yflux_gm_int_z-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "temp_yflux_gm_int_z", "temp_yflux_gm_int_z", "ocean-2d-temp_yflux_gm_int_z-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-temp_yflux_ndiffuse_int_z-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "temp_yflux_ndiffuse_int_z", "temp_yflux_ndiffuse_int_z", "ocean-2d-temp_yflux_ndiffuse_int_z-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-temp_yflux_submeso_int_z-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "temp_yflux_submeso_int_z", "temp_yflux_submeso_int_z", "ocean-2d-temp_yflux_submeso_int_z-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-tx_trans_int_z-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "tx_trans_int_z", "tx_trans_int_z", "ocean-2d-tx_trans_int_z-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-ty_trans_int_z-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "ty_trans_int_z", "ty_trans_int_z", "ocean-2d-ty_trans_int_z-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-wfiform-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "wfiform", "wfiform", "ocean-2d-wfiform-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-wfimelt-1-monthly-mean-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "wfimelt", "wfimelt", "ocean-2d-wfimelt-1-monthly-mean-ym%4yr%2mo", "all", "average", "none", 2 + + +# monthly 2d fields with different reduction methods + +"ocean-2d-mld-1-monthly-max-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "mld", "mld", "ocean-2d-mld-1-monthly-max-ym%4yr%2mo", "all", "max", "none", 2 + +"ocean-2d-surface_pot_temp-1-monthly-min-ym%4yr%2mo", 1, "months", 1, "days", "time", 1, "years" +"ocean_model", "surface_pot_temp", "surface_pot_temp", "ocean-2d-surface_pot_temp-1-monthly-min-ym%4yr%2mo", "all", "min", "none", 2 + + +# daily 2d fields + +"ocean-2d-bottom_temp-1-daily-mean-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "bottom_temp", "bottom_temp", "ocean-2d-bottom_temp-1-daily-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-frazil_3d_int_z-1-daily-mean-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "frazil_3d_int_z", "frazil_3d_int_z", "ocean-2d-frazil_3d_int_z-1-daily-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-mld-1-daily-mean-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "mld", "mld", "ocean-2d-mld-1-daily-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-pme_river-1-daily-mean-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "pme_river", "pme_river", "ocean-2d-pme_river-1-daily-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-sea_level-1-daily-mean-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "sea_level", "sea_level", "ocean-2d-sea_level-1-daily-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-sfc_hflux_coupler-1-daily-mean-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "sfc_hflux_coupler", "sfc_hflux_coupler", "ocean-2d-sfc_hflux_coupler-1-daily-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-sfc_hflux_from_runoff-1-daily-mean-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "sfc_hflux_from_runoff", "sfc_hflux_from_runoff", "ocean-2d-sfc_hflux_from_runoff-1-daily-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-sfc_hflux_pme-1-daily-mean-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "sfc_hflux_pme", "sfc_hflux_pme", "ocean-2d-sfc_hflux_pme-1-daily-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-surface_pot_temp-1-daily-mean-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "surface_pot_temp", "surface_pot_temp", "ocean-2d-surface_pot_temp-1-daily-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-surface_salt-1-daily-mean-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "surface_salt", "surface_salt", "ocean-2d-surface_salt-1-daily-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-usurf-1-daily-mean-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "usurf", "usurf", "ocean-2d-usurf-1-daily-mean-ym%4yr%2mo", "all", "average", "none", 2 + +"ocean-2d-vsurf-1-daily-mean-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "vsurf", "vsurf", "ocean-2d-vsurf-1-daily-mean-ym%4yr%2mo", "all", "average", "none", 2 + + +# daily 2d maximum fields + +"ocean-2d-bottom_temp-1-daily-max-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "bottom_temp", "bottom_temp", "ocean-2d-bottom_temp-1-daily-max-ym%4yr%2mo", "all", "max", "none", 2 + +"ocean-2d-sea_level-1-daily-max-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "sea_level", "sea_level", "ocean-2d-sea_level-1-daily-max-ym%4yr%2mo", "all", "max", "none", 2 + +"ocean-2d-surface_pot_temp-1-daily-max-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "surface_pot_temp", "surface_pot_temp", "ocean-2d-surface_pot_temp-1-daily-max-ym%4yr%2mo", "all", "max", "none", 2 + + +# daily 2d minimum fields + +"ocean-2d-surface_pot_temp-1-daily-min-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "surface_pot_temp", "surface_pot_temp", "ocean-2d-surface_pot_temp-1-daily-min-ym%4yr%2mo", "all", "min", "none", 2 + + +# daily scalar snapshots + +"ocean-scalar-1-daily-ym%4yr%2mo", 1, "days", 1, "days", "time", 1, "years" +"ocean_model", "eta_global", "eta_global", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "ke_tot", "ke_tot", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "pe_tot", "pe_tot", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "rhoave", "rhoave", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "salt_global_ave", "salt_global_ave", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "salt_surface_ave", "salt_surface_ave", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "temp_global_ave", "temp_global_ave", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "temp_surface_ave", "temp_surface_ave", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_net_sfc_heating", "total_net_sfc_heating", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_evap_heat", "total_ocean_evap_heat", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_evap", "total_ocean_evap", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_fprec_melt_heat", "total_ocean_fprec_melt_heat", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_fprec", "total_ocean_fprec", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_heat", "total_ocean_heat", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_hflux_coupler", "total_ocean_hflux_coupler", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_hflux_evap", "total_ocean_hflux_evap", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_hflux_prec", "total_ocean_hflux_prec", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_lprec", "total_ocean_lprec", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_lw_heat", "total_ocean_lw_heat", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_melt", "total_ocean_melt", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_mh_flux", "total_ocean_mh_flux", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_pme_river", "total_ocean_pme_river", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_river_heat", "total_ocean_river_heat", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_river", "total_ocean_river", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_runoff_heat", "total_ocean_runoff_heat", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_runoff", "total_ocean_runoff", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_salt", "total_ocean_salt", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_sens_heat", "total_ocean_sens_heat", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_sfc_salt_flux_coupler", "total_ocean_sfc_salt_flux_coupler", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_swflx_vis", "total_ocean_swflx_vis", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 +"ocean_model", "total_ocean_swflx", "total_ocean_swflx", "ocean-scalar-1-daily-ym%4yr%2mo", "all", "none", "none", 1 + + +# monthly 2d snapshots + + +# monthly 3d snapshots diff --git a/ocean/field_table b/ocean/field_table new file mode 100644 index 0000000..730d954 --- /dev/null +++ b/ocean/field_table @@ -0,0 +1,63 @@ +"prog_tracers","ocean_mod","temp" +horizontal-advection-scheme = mdppm +vertical-advection-scheme = mdppm +restart_file = ocean_temp_salt.res.nc +ppm_hlimiter = 3 +ppm_vlimiter = 3 +/ +"prog_tracers","ocean_mod","salt" +horizontal-advection-scheme = mdppm +vertical-advection-scheme = mdppm +restart_file = ocean_temp_salt.res.nc +ppm_hlimiter = 3 +ppm_vlimiter = 3 +/ +"tracer_packages","ocean_mod","ocean_age_tracer" +names = global +const_init_tracer = .true. +horizontal-advection-scheme = mdppm +vertical-advection-scheme = mdppm +ppm_hlimiter = 3 +ppm_vlimiter = 3 +restart_file = ocean_age.res.nc +min_tracer_limit=0.0 +/ +"namelists","ocean_mod","ocean_age_tracer/global" +slat = -90.0 +nlat = 90.0 +wlon = 0.0 +elon = 360.0 +/ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=3.e-6" / +# prognotic cloud scheme tracers + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud liquid specific humidity" + "units", "kg/kg" / + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice water specific humidity" + "units", "kg/kg" / + "TRACER", "atmos_mod", "cld_amt" + "longname", "cloud fraction" + "units", "none" / +# test tracer for radon +# "TRACER", "atmos_mod", "radon" +# "longname", "radon test tracer" +# "units", "kg/kg" / + "TRACER", "land_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" / + +"rayleigh_damp_table","ocean_mod","rayleigh_damp_table" +"rayleigh","Lombok","itable=36,jtable=112,ktable_1=1,ktable_2=50,rayleigh_damp_table=5400" +"rayleigh","Ombai","itable=44,jtable=111,ktable_1=1,ktable_2=50,rayleigh_damp_table=5400" +"rayleigh","Torres","itable=62,jtable=106,ktable_1=1,ktable_2=50,rayleigh_damp_table=5400" +"rayleigh","Torres","itable=62,jtable=107,ktable_1=1,ktable_2=50,rayleigh_damp_table=5400" +"rayleigh","Torres","itable=62,jtable=108,ktable_1=1,ktable_2=50,rayleigh_damp_table=5400" +"rayleigh","Torres","itable=62,jtable=109,ktable_1=1,ktable_2=50,rayleigh_damp_table=5400"/ + + diff --git a/ocean/input.nml b/ocean/input.nml new file mode 100644 index 0000000..a06d7e5 --- /dev/null +++ b/ocean/input.nml @@ -0,0 +1,604 @@ +&auscom_ice_nml + aice_cutoff = 0.15 + chk_i2o_fields = .false. + chk_o2i_fields = .false. + do_ice_once = .false. + fixmeltt = .false. + frazil_factor = 1.0 + iceform_adj_salt = .false. + icemlt_factor = 1.0 + kmxice = 5 + pop_icediag = .true. + redsea_gulfbay_sfix = .false. + sign_stflx = 1.0 + tmelt = -0.216 + use_ioaice = .true. +/ + +&data_override_nml +/ + +&diag_manager_nml + debug_diag_manager = .false. + issue_oor_warnings = .true. + max_axes = 400 + max_files = 200 + max_num_axis_sets = 200 +/ + +&fms_io_nml + fileset_write = 'single' + threading_read = 'multi' + threading_write = 'single' +/ + +&fms_nml + clock_grain = 'LOOP' + domains_stack_size = 115200 +/ + +&mom_oasis3_interface_nml + fields_in = 'u_flux', 'v_flux', 'lprec', 'fprec', 'salt_flx', + 'mh_flux', 'sw_flux', 'q_flux', 't_flux', 'lw_flux', + 'runof', 'p', 'aice', 'wfimelt', 'wfiform', 'licefw', + 'liceht' + fields_out = 't_surf', 's_surf', 'u_surf', 'v_surf', 'dssldx', + 'dssldy', 'frazil' + num_fields_in = 17 + num_fields_out = 7 + send_after_ocean_update = .true. + send_before_ocean_update = .false. +/ + +&monin_obukhov_nml +/ + +&mpp_io_nml + deflate_level = -1 + shuffle = 1 +/ + +&ocean_adv_vel_diag_nml + diag_step = 4320 + large_cfl_value = 10.0 + max_cfl_value = 100.0 + verbose_cfl = .true. +/ + +&ocean_advection_velocity_nml + max_advection_velocity = 0.5 +/ + +&ocean_albedo_nml +/ + +&ocean_barotropic_nml + barotropic_halo = 10 + barotropic_time_stepping_a = .true. + barotropic_time_stepping_b = .false. + diag_step = 4320 + eta_max = 8.0 + frac_crit_cell_height = 0.2 + pred_corr_gamma = 0.2 + smooth_eta_diag_laplacian = .true. + smooth_eta_t_biharmonic = .false. + smooth_eta_t_laplacian = .true. + smooth_pbot_t_biharmonic = .false. + smooth_pbot_t_laplacian = .true. + truncate_eta = .false. + use_legacy_barotropic_halos = .false. + vel_micom_bih = 0.01 + vel_micom_lap = 0.05 + vel_micom_lap_diag = 0.2 + verbose_truncate = .true. + zero_tendency = .false. +/ + +&ocean_bbc_nml + bmf_implicit = .true. + cdbot_hi = 0.007 + cdbot_roughness_uamp = .true. + uresidual = 0.05 +/ + +&ocean_bih_friction_nml + bih_friction_scheme = 'general' +/ + +&ocean_bih_tracer_nml + use_this_module = .false. +/ + +&ocean_bihcst_friction_nml + use_this_module = .false. +/ + +&ocean_bihgen_friction_nml + bottom_5point = .true. + eq_lat_micom = 0.0 + eq_vel_micom_aniso = 0.0 + eq_vel_micom_iso = 0.0 + equatorial_zonal = .false. + k_smag_aniso = 0.0 + k_smag_iso = 2.0 + ncar_boundary_scaling = .true. + ncar_boundary_scaling_read = .false. + ncar_rescale_power = 2 + ncar_vconst_4 = 2e-08 + ncar_vconst_5 = 5 + use_this_module = .true. + vel_micom_aniso = 0.0 + vel_micom_bottom = 0.01 + vel_micom_iso = 0.04 + visc_crit_scale = 0.25 +/ + +&ocean_blob_nml +/ + +&ocean_convect_nml + use_this_module = .false. +/ + +&ocean_coriolis_nml + acor = 0.5 + use_this_module = .true. +/ + +&ocean_density_nml + eos_linear = .false. + eos_preteos10 = .true. + layer_nk = 80 + neutralrho_max = 1038.0 + neutralrho_min = 1028.0 + potrho_max = 1038.0 + potrho_min = 1028.0 +/ + +&ocean_domains_nml + max_tracers = 5 +/ + +&ocean_drifters_nml +/ + +&ocean_form_drag_nml + use_this_module = .false. +/ + +&ocean_frazil_nml + frazil_only_in_surface = .false. + freezing_temp_preteos10 = .true. + freezing_temp_simple = .false. + use_this_module = .true. +/ + +&ocean_grids_nml +/ + +&ocean_increment_eta_nml + use_this_module = .false. +/ + +&ocean_increment_tracer_nml + use_this_module = .false. +/ + +&ocean_increment_velocity_nml + use_this_module = .false. +/ + +&ocean_lap_friction_nml + lap_friction_scheme = 'general' +/ + +&ocean_lap_tracer_nml + use_this_module = .false. +/ + +&ocean_lapcst_friction_nml + use_this_module = .false. +/ + +&ocean_lapgen_friction_nml + bottom_5point = .true. + k_smag_aniso = 0.0 + k_smag_iso = 0.0 + restrict_polar_visc = .true. + restrict_polar_visc_lat = 60.0 + restrict_polar_visc_ratio = 0.35 + use_this_module = .true. + vel_micom_iso = 0.1 + viscosity_ncar = .false. + viscosity_ncar_2007 = .false. + viscosity_scale_by_rossby = .true. + viscosity_scale_by_rossby_power = 4.0 +/ + +&ocean_mixdownslope_nml + mixdownslope_mask_gfdl = .false. + mixdownslope_npts = 4 + read_mixdownslope_mask = .false. + use_this_module = .true. +/ + +&ocean_model_nml + baroclinic_split = 1 + barotropic_split = 80 + cmip_units = .true. + debug = .false. + io_layout = 4, 3 + layout = 16, 15 + surface_height_split = 1 + time_tendency = 'twolevel' + vertical_coordinate = 'zstar' +/ + +&ocean_momentum_source_nml + rayleigh_damp_exp_from_bottom = .false. + use_rayleigh_damp_table = .true. + use_this_module = .true. +/ + +&ocean_nphysics_new_nml +/ + +&ocean_nphysics_nml + use_nphysicsa = .false. + use_nphysicsb = .false. + use_nphysicsc = .true. + use_this_module = .true. +/ + +&ocean_nphysics_util_new_nml +/ + +&ocean_nphysics_util_nml + agm_closure = .true. + agm_closure_baroclinic = .true. + agm_closure_buoy_freq = 0.004 + agm_closure_eady_ave_mixed = .true. + agm_closure_eady_cap = .true. + agm_closure_eady_smooth_horz = .true. + agm_closure_eady_smooth_vert = .true. + agm_closure_grid_scaling = .true. + agm_closure_length = 50000.0 + agm_closure_lower_depth = 2000.0 + agm_closure_max = 600.0 + agm_closure_min = 50.0 + agm_closure_scaling = 0.07 + agm_closure_upper_depth = 100.0 + aredi = 600.0 + aredi_equal_agm = .false. + drhodz_mom4p1 = .true. + nphysics_util_zero_init = .true. +/ + +&ocean_nphysicsa_nml + use_this_module = .false. +/ + +&ocean_nphysicsb_nml + use_this_module = .false. +/ + +&ocean_nphysicsc_nml + bv_freq_smooth_vert = .true. + bvp_bc_mode = 2 + bvp_min_speed = 0.1 + bvp_speed = 0.0 + do_gm_skewsion = .true. + do_neutral_diffusion = .true. + epsln_bv_freq = 1e-12 + gm_skewsion_bvproblem = .true. + gm_skewsion_modes = .false. + neutral_eddy_depth = .true. + neutral_physics_limit = .true. + number_bc_modes = 2 + regularize_psi = .false. + smax_psi = 0.01 + smooth_psi = .true. + tmask_neutral_on = .true. + turb_blayer_min = 50.0 + use_this_module = .true. +/ + +&ocean_obc_nml +/ + +&ocean_obs_nml +/ + +&ocean_operators_nml +/ + +&ocean_overexchange_nml + use_this_module = .false. +/ + +&ocean_overflow_nml + use_this_module = .false. +/ + +&ocean_overflow_ofp_nml + use_this_module = .false. +/ + +&ocean_passive_nml +/ + +&ocean_pressure_nml +/ + +&ocean_rivermix_nml + river_diffuse_salt = .true. + river_diffuse_temp = .true. + river_diffusion_thickness = 0.0 + river_diffusivity = 0.0 + river_insertion_thickness = 40.0 + use_this_module = .true. +/ + +&ocean_riverspread_nml + use_this_module = .false. +/ + +&ocean_rough_nml + rough_scheme = 'beljaars' +/ + +&ocean_sbc_nml + avg_sfc_temp_salt_eta = .true. + avg_sfc_velocity = .true. + calvingspread = .false. + do_bitwise_exact_sum = .true. + do_flux_correction = .false. + land_model_heat_fluxes = .false. + max_delta_salinity_restore = -0.5 + max_ice_thickness = 0.0 + read_restore_mask = .false. + restore_mask_gfdl = .false. + runoff_salinity = 0.0 + salt_correction_scale = 0.0 + salt_restore_as_salt_flux = .true. + salt_restore_tscale = 21.28 + salt_restore_under_ice = .true. + temp_restore_tscale = -10.0 + use_full_patm_for_sea_level = .false. + use_waterflux = .true. + zero_heat_fluxes = .false. + zero_net_salt_correction = .false. + zero_net_salt_restore = .true. + zero_net_water_correction = .false. + zero_net_water_couple_restore = .true. + zero_net_water_coupler = .true. + zero_net_water_restore = .true. + zero_surface_stress = .false. + zero_water_fluxes = .false. +/ + +&ocean_shortwave_csiro_nml + use_this_module = .false. +/ + +&ocean_shortwave_gfdl_nml + enforce_sw_frac = .true. + optics_manizza = .true. + optics_morel_antoine = .false. + read_chl = .true. + use_this_module = .true. + zmax_pen = 1000000.0 +/ + +&ocean_shortwave_jerlov_nml + use_this_module = .false. +/ + +&ocean_shortwave_nml + use_shortwave_csiro = .false. + use_shortwave_gfdl = .true. + use_shortwave_jerlov = .false. + use_this_module = .true. +/ + +&ocean_sigma_transport_nml + use_this_module = .true. +/ + +&ocean_solo_nml +/ + +&ocean_sponges_eta_nml + use_this_module = .false. +/ + +&ocean_sponges_tracer_nml + use_this_module = .false. +/ + +&ocean_sponges_velocity_nml + use_this_module = .false. +/ + +&ocean_submesoscale_nml + coefficient_ce = 0.05 + front_length_const = 5000.0 + front_length_deform_radius = .true. + limit_psi = .true. + limit_psi_velocity_scale = 0.5 + min_kblt = 4 + smooth_advect_transport = .true. + smooth_advect_transport_num = 2 + smooth_hblt = .false. + smooth_psi = .true. + smooth_psi_num = 2 + submeso_advect_flux = .false. + submeso_advect_limit = .true. + submeso_advect_upwind = .true. + submeso_advect_zero_bdy = .true. + submeso_diffusion = .false. + submeso_diffusion_biharmonic = .true. + submeso_diffusion_scale = 10.0 + submeso_skew_flux = .true. + use_hblt_equal_mld = .true. + use_psi_legacy = .false. + use_this_module = .true. +/ + +&ocean_tempsalt_nml + pottemp_2nd_iteration = .true. + s_max = 70.0 + s_max_limit = 42.0 + s_min = 0.0 + s_min_limit = 2.0 + t_max = 55.0 + t_max_limit = 32.0 + t_min = -20.0 + t_min_limit = -5.0 + temperature_variable = 'conservative_temp' +/ + +&ocean_thickness_nml + debug_this_module_detail = .false. + rescale_mass_to_get_ht_mod = .false. + thickness_method = 'energetic' +/ + +&ocean_time_filter_nml +/ + +&ocean_topog_nml + min_thickness = 0.001 +/ + +&ocean_tracer_advect_nml + read_basin_mask = .false. +/ + +&ocean_tracer_diag_nml + diag_step = 4320 + do_bitwise_exact_sum = .false. + tracer_conserve_days = 30.0 +/ + +&ocean_tracer_nml + age_tracer_max_init = 0.0 + frazil_heating_after_vphysics = .true. + frazil_heating_before_vphysics = .false. + limit_age_tracer = .true. + remap_depth_to_s_init = .false. + use_tempsalt_check_range = .true. + zero_tendency = .false. + zero_tracer_source = .false. +/ + +&ocean_velocity_advect_nml +/ + +&ocean_velocity_diag_nml + diag_step = 4320 + energy_diag_step = 4320 + large_cfl_value = 10.0 + max_cfl_value = 100.0 +/ + +&ocean_velocity_nml + adams_bashforth_third = .true. + max_cgint = 1.0 + truncate_velocity = .false. + truncate_velocity_value = 2.0 + truncate_verbose = .true. + zero_tendency = .false. + zero_tendency_explicit_a = .false. + zero_tendency_explicit_b = .false. + zero_tendency_implicit = .false. +/ + +&ocean_vert_chen_nml +/ + +&ocean_vert_const_nml +/ + +&ocean_vert_gotm_nml +/ + +&ocean_vert_kpp_mom4p0_nml +/ + +&ocean_vert_kpp_mom4p1_nml + diff_cbt_iw = 0.0 + double_diffusion = .true. + kbl_standard_method = .false. + ricr = 0.3 + smooth_blmc = .false. + smooth_ri_kmax_eq_kmu = .true. + use_this_module = .true. + visc_cbu_iw = 0.0 +/ + +&ocean_vert_mix_nml + aidif = 1.0 + bryan_lewis_diffusivity = .false. + bryan_lewis_lat_depend = .false. + hwf_diffusivity = .false. + hwf_min_diffusivity = 2e-06 + hwf_n0_2omega = 20.0 + j09_bgmax = 5e-06 + j09_bgmin = 1e-06 + j09_diffusivity = .true. + j09_lat = 20.0 + use_diff_cbt_table = .false. + vert_diff_back_via_max = .true. + vert_mix_scheme = 'kpp_mom4p1' +/ + +&ocean_vert_pp_nml +/ + +&ocean_vert_tidal_nml + background_diffusivity = 0.0 + background_viscosity = 0.0001 + decay_scale = 500.0 + drag_dissipation_use_cdbot = .true. + drhodz_min = 1e-10 + fixed_wave_dissipation = .false. + max_wave_diffusivity = 0.01 + mixing_efficiency_n2depend = .true. + read_roughness = .true. + read_tide_speed = .true. + read_wave_dissipation = .false. + reading_roughness_amp = .true. + reading_roughness_length = .false. + roughness_scale = 12000.0 + shelf_depth_cutoff = -1000.0 + tide_speed_data_on_t_grid = .true. + use_drag_dissipation = .true. + use_legacy_methods = .false. + use_this_module = .true. + use_wave_dissipation = .true. + wave_energy_flux_max = 0.1 +/ + +&ocean_xlandinsert_nml + use_this_module = .false. +/ + +&ocean_xlandmix_nml + use_this_module = .false. +/ + +&oda_core_nml +/ + +&oda_nml +/ + +&surface_flux_nml +/ + +&xgrid_nml + interp_method = 'second_order' + make_exchange_reproduce = .false. + nsubset = 16 +/ diff --git a/tools/diag_table_source.yaml b/tools/diag_table_source.yaml new file mode 100755 index 0000000..abce5f3 --- /dev/null +++ b/tools/diag_table_source.yaml @@ -0,0 +1,344 @@ +####################################################################################################### +# This yaml file is used by make_diag_table.py to create a diag_table file specifying MOM5 diagnostics. +# Latest version: https://github.com/COSIMA/make_diag_table +# +# Define the diagnostics you want in the diag_table section below. +# +# The MOM diag_table format is defined here: +# https://github.com/mom-ocean/MOM5/blob/master/src/shared/diag_manager/diag_table.F90 +####################################################################################################### + + +# Define global default settings which will be applied to all diagnostics, +# unless overridden in diag_table section below, either in defaults or individual fields. +# You're unlikely to need to change any of the global_defaults. +global_defaults: +# global_section: + title: ACCESS-OM2 # any string + base_date: [ 1900, 1, 1, 0, 0, 0 ] # reference time used for the time units. six integers: year, month, day, hour, minute, second +# file section: + file_name: # file name (without trailing ".nc") is constructed from these components, + # separated by file_name_separator, as per https://github.com/COSIMA/access-om2/issues/185 + # All these components (other than field_name) must be names that exist in global_defaults. + # If file_name_date or file_name_date_section are used, it must be the last item. + - file_name_prefix + - file_name_dimension + - field_name # substituted by field name in diag_table section below + - output_freq + - output_freq_units + - reduction_method + - file_name_date + # - file_name_date_section + output_freq: 1 # integer: output sampling frequency in output_freq_units (0: every timestep; -1: only at end of run) + output_freq_units: months # time units for output: years, months, days, hours, minutes, or seconds + file_format: 1 # integer, must be 1, specifying NetCDF (the only format currently supported) + time_axis_units: days # time units for the output file time axis: years, months, days, hours, minutes, or seconds + time_axis_name: time # must be "time" (case-insensitive) + new_file_freq: 1 # optional integer: frequency (in new_file_freq_units) for closing the existing file, and creating a new file + new_file_freq_units: years # time units for new_file_freq: years, months, days, hours, minutes, or seconds (optional; required if and only if new_file_freq specified) + start_time: # Time to start the file for the first time. The format of this string is the same as base_date (optional; requires new_file_freq, new_file_freq_units) + file_duration: # integer: How long file should receive data after start time (optional; requires new_file_freq, new_file_freq_units, start_time) + file_duration_units: # units for file_duration: years, months, days, hours, minutes, or seconds (optional; required if and only if file_duration specified) +# field section: + module_name: ocean_model + field_name: # set via keys in the fields section of the diag_table section below + output_name: # same as field_name unless overridden + # file_name: # same as file_name in file_section above unless overridden in diag_table section below + time_sampling: all # Currently not used. Please use the string "all". + reduction_method: mean # mean, snap, rms, pow##, min, max, or diurnal## + # reduction_method options: + # mean or average or true: Average from the last time written to the current time. Becomes "average" in diag_table. + # snap or none or false: No reduction. Write snapshot of current time step value only. Becomes "none" in diag_table. + # rms: Calculate the root mean square from the last time written to the current time. + # pow##: Calculate the mean of the power ## from the last time written to the current time. + # min: Minimum value from last write to current time. + # max: Maximum value from last write to current time. + # diurnal##: ## diurnal averages + regional_section: none # string: bounds of the regional section to capture ("none" indicates a global region). String format: lat_min, lat_max, lon_min, lon_max, vert_min, vert_max. Use vert_min = -1 and vert_max = -1 to get the entire vertical axis. + packing: 2 + # packing is the Fortran number KIND of the data written: + # 1: double precision + # 2: float (single precision) + # 4: packed 16-bit integers + # 8: packed 1-byte (not tested) +# extra things for constructing filename: + file_name_dimension: 3d # descriptor for filename, e.g. 3d, 2d, scalar + file_name_prefix: ocean + file_name_date: "ym%4yr%2mo" # run date/time of file opening; format: %, 1 digit (#digits), one of (yr, mo, dy, hr, mi, sc); date/time components will be separated by _ in filename. + file_name_separator: "-" # used to separate filename components; best not to use "_" to avoid confusion with fields and dates + file_name_omit_empty: true # whether to omit empty filename components to avoid duplicate file_name_separator + file_name_substitutions: # string replacements for filename components + years: yearly + months: monthly + days: daily + hours: hourly + none: snap # careful! will apply to both reduction_method and regional_section + 'False': snap + average: mean + 'True': mean + None: "" # for empty items + file_name_date_section: # These are separated by "_". If file_name_date is used, it must be the last item. + - output_freq + - output_freq_units + - reduction_method + - file_name_date + + +####################################################################################################### +# diag_table section - this defines the diagnostics that will appear in diag_table. +# +# Top-level categories in diag_table have arbitrary names (they're just used for +# comments in the output diag_table). Make as many of these as you like to group +# similar diagnostics with shared defaults. Note that each of the top-level +# categories can have only have one instance of each field name, so if you need +# multiple outputs of the same field (e.g. as both averages and snapshots), you’ll +# need to make additional categories. +# +# Within each top-level category there's an optional defaults section and a +# fields section. The defaults section overrides items in global_defaults for +# all fields in the category. The field section specifies diagnostic field +# names. To add a new diagnostic, all you need to do is add its name to the +# field section in the appropriate category. Each field name can be followed by +# a dictionary overriding the category and global defaults for that field only. +# +# Some of the available diagnostics are listed here: +# https://raw.githubusercontent.com/COSIMA/access-om2/master/MOM_diags.txt +# https://github.com/COSIMA/access-om2/wiki/Technical-documentation#MOM5-diagnostics-list +diag_table: + 'static 2d grid data': + defaults: # these can be overridden for individual fields below + file_name_dimension: 2d # descriptor for filename, e.g. 3d, 2d, scalar + file_name: # file name (without trailing ".nc") is constructed from these components, + # separated by file_name_separator, as per https://github.com/COSIMA/access-om2/issues/185 + # All these components (other than field_name) must be names that exist in global_defaults. + - file_name_prefix + - file_name_dimension + - field_name # substituted by field name in fields section below + reduction_method: snap # mean, snap, rms, pow##, min, max, or diurnal## + output_freq: -1 # Output frequency in output_freq_units (0: every timestep; -1: only at end of run) + new_file_freq: # optional integer: frequency (in new_file_freq_units) for closing the existing file, and creating a new file + fields: + area_t: + area_u: + drag_coeff: + dxt: + dxu: + dyt: + dyu: + geolat_c: + geolat_t: + geolon_c: + geolon_t: + ht: + hu: + kmt: + kmu: + 'monthly 3d fields': + defaults: # these can be overridden for individual fields below + file_name_dimension: 3d # descriptor for filename, e.g. 3d, 2d, scalar + output_freq: 1 # integer: output sampling frequency in output_freq_units (0: every timestep; -1: only at end of run) + output_freq_units: months # time units for output: years, months, days, hours, minutes, or seconds + fields: + age_global: + # aiso_bih: + buoyfreq2_wt: + diff_cbt_t: + dzt: # potentially calculable from other fields - https://github.com/COSIMA/access-om2/issues/203#issuecomment-635752170 + pot_rho_0: + pot_rho_2: + pot_temp: + salt: + temp_xflux_adv: + temp_yflux_adv: + temp: + # tx_trans_gm: + # tx_trans_nrho_submeso: + # tx_trans_rho_gm: + # tx_trans_rho: + # tx_trans_submeso: + tx_trans: + ty_trans_gm: + ty_trans_nrho_submeso: + ty_trans_rho_gm: + ty_trans_rho: + ty_trans_submeso: + ty_trans: + u: + v: + vert_pv: + # vorticity_z: + wt: + 'monthly 3d squared fields': # for calculating EKE etc + defaults: # these can be overridden for individual fields below + file_name_dimension: 3d # descriptor for filename, e.g. 3d, 2d, scalar + output_freq: 1 # integer: output sampling frequency in output_freq_units (0: every timestep; -1: only at end of run) + output_freq_units: months # time units for output: years, months, days, hours, minutes, or seconds + reduction_method: pow02 # mean, snap, rms, pow##, min, max, or diurnal## + fields: + u: + v: + 'monthly 2d fields': + defaults: # these can be overridden for individual fields below + file_name_dimension: 2d # descriptor for filename, e.g. 3d, 2d, scalar + output_freq: 1 # integer: output sampling frequency in output_freq_units (0: every timestep; -1: only at end of run) + output_freq_units: months # time units for output: years, months, days, hours, minutes, or seconds + fields: + agm: + aredi: + bmf_u: + bmf_v: + ekman_we: + eta_nonbouss: + evap_heat: + evap: + fprec_melt_heat: + fprec: + frazil_3d_int_z: + lprec: + lw_heat: + melt: + mh_flux: + mld: + net_sfc_heating: + pbot_t: + pme_net: + pme_river: + river: + runoff: + sea_level_sq: + sea_level: + sens_heat: + sfc_hflux_coupler: + sfc_hflux_from_runoff: + sfc_hflux_pme: + sfc_salt_flux_coupler: + sfc_salt_flux_ice: + sfc_salt_flux_restore: + surface_pot_temp: + surface_salt: + swflx: + tau_x: + tau_y: + temp_int_rhodz: + temp_xflux_adv_int_z: + temp_xflux_gm_int_z: + temp_xflux_ndiffuse_int_z: + temp_xflux_submeso_int_z: + temp_yflux_adv_int_z: + temp_yflux_gm_int_z: + temp_yflux_ndiffuse_int_z: + temp_yflux_submeso_int_z: + tx_trans_int_z: + ty_trans_int_z: + wfiform: + wfimelt: + 'monthly 2d fields with different reduction methods': + defaults: # these can be overridden for individual fields below + file_name_dimension: 2d # descriptor for filename, e.g. 3d, 2d, scalar + output_freq: 1 # integer: output sampling frequency in output_freq_units (0: every timestep; -1: only at end of run) + output_freq_units: months # time units for output: years, months, days, hours, minutes, or seconds + fields: + mld: {reduction_method: max} # max avoids spurious small values due to rainfall + surface_pot_temp: {reduction_method: min} # min for comparison with foundation temperature + 'daily 2d fields': + defaults: # these can be overridden for individual fields below + file_name_dimension: 2d # descriptor for filename, e.g. 3d, 2d, scalar + output_freq: 1 # integer: output sampling frequency in output_freq_units (0: every timestep; -1: only at end of run) + output_freq_units: days # time units for output: years, months, days, hours, minutes, or seconds + fields: + bottom_temp: + frazil_3d_int_z: + mld: + pme_river: + sea_level: + sfc_hflux_coupler: + sfc_hflux_from_runoff: + sfc_hflux_pme: + surface_pot_temp: + surface_salt: + usurf: + vsurf: + 'daily 2d maximum fields': + defaults: # these can be overridden for individual fields below + file_name_dimension: 2d # descriptor for filename, e.g. 3d, 2d, scalar + output_freq: 1 # integer: output sampling frequency in output_freq_units (0: every timestep; -1: only at end of run) + output_freq_units: days # time units for output: years, months, days, hours, minutes, or seconds + reduction_method: max # mean, snap, rms, pow##, min, max, or diurnal## + fields: + bottom_temp: + sea_level: + surface_pot_temp: + 'daily 2d minimum fields': + defaults: # these can be overridden for individual fields below + file_name_dimension: 2d # descriptor for filename, e.g. 3d, 2d, scalar + output_freq: 1 # integer: output sampling frequency in output_freq_units (0: every timestep; -1: only at end of run) + output_freq_units: days # time units for output: years, months, days, hours, minutes, or seconds + reduction_method: min # mean, snap, rms, pow##, min, max, or diurnal## + fields: + surface_pot_temp: # min for comparison with foundation temperature + 'daily scalar snapshots': # snapshots of global integrals give better parallel performance + defaults: # these can be overridden for individual fields below + file_name_dimension: scalar # descriptor for filename, e.g. 3d, 2d, scalar + file_name: # file name (without trailing ".nc") is constructed from these components, + # separated by file_name_separator, as per https://github.com/COSIMA/access-om2/issues/185 + # All these components (other than field_name) must be names that exist in global_defaults. + - file_name_prefix + - file_name_dimension + - output_freq + - output_freq_units + - file_name_date + output_freq: 1 # integer: output sampling frequency in output_freq_units (0: every timestep; -1: only at end of run) + output_freq_units: days # time units for output: years, months, days, hours, minutes, or seconds + reduction_method: snap # mean, snap, rms, pow##, min, max, or diurnal## + packing: 1 # double precision + fields: + eta_global: + ke_tot: + pe_tot: + rhoave: + salt_global_ave: + salt_surface_ave: + temp_global_ave: + temp_surface_ave: + total_net_sfc_heating: + total_ocean_evap_heat: + total_ocean_evap: + total_ocean_fprec_melt_heat: + total_ocean_fprec: + total_ocean_heat: + total_ocean_hflux_coupler: + total_ocean_hflux_evap: + total_ocean_hflux_prec: + total_ocean_lprec: + total_ocean_lw_heat: + total_ocean_melt: + total_ocean_mh_flux: + total_ocean_pme_river: + total_ocean_river_heat: + total_ocean_river: + total_ocean_runoff_heat: + total_ocean_runoff: + total_ocean_salt: + total_ocean_sens_heat: + total_ocean_sfc_salt_flux_coupler: + total_ocean_swflx_vis: + total_ocean_swflx: + 'monthly 2d snapshots': + defaults: # these can be overridden for individual fields below + file_name_dimension: 2d # descriptor for filename, e.g. 3d, 2d, scalar + output_freq: 1 # integer: output sampling frequency in output_freq_units (0: every timestep; -1: only at end of run) + output_freq_units: months # time units for output: years, months, days, hours, minutes, or seconds + reduction_method: snap # mean, snap, rms, pow##, min, max, or diurnal## + fields: + # sea_level: + 'monthly 3d snapshots': + defaults: # these can be overridden for individual fields below + file_name_dimension: 3d # descriptor for filename, e.g. 3d, 2d, scalar + output_freq: 1 # integer: output sampling frequency in output_freq_units (0: every timestep; -1: only at end of run) + output_freq_units: months # time units for output: years, months, days, hours, minutes, or seconds + reduction_method: snap # mean, snap, rms, pow##, min, max, or diurnal## + fields: + # temp: + # u: + # v: + # vorticity_z: diff --git a/tools/make_diag_table.py b/tools/make_diag_table.py new file mode 100755 index 0000000..ea5d2a9 --- /dev/null +++ b/tools/make_diag_table.py @@ -0,0 +1,143 @@ +#!/usr/bin/env python3 +""" + +Generate MOM5 diag_table file from diag_table_source.yaml +Latest version: https://github.com/COSIMA/make_diag_table + +The MOM diag_table format is defined here: +https://github.com/mom-ocean/MOM5/blob/master/src/shared/diag_manager/diag_table.F90 +and some of the available diagnostics are listed here: +https://raw.githubusercontent.com/COSIMA/access-om2/master/MOM_diags.txt +https://github.com/COSIMA/access-om2/wiki/Technical-documentation#MOM5-diagnostics-list + +""" + +from __future__ import print_function +import sys + +try: + assert sys.version_info >= (3, 5) # need python >= 3.5 for combining defaults +except AssertionError: + print('\nFatal error: Python version must be >=3.5') + print('On NCI, do the following and try again:') + print(' module use /g/data/hh5/public/modules; module load conda/analysis3\n') + raise + +try: + import yaml +except ModuleNotFoundError: + print('\nFatal error: pyyaml package not found.') + print('On NCI, do the following and try again:') + print(' module use /g/data/hh5/public/modules; module load conda/analysis3\n') + raise + + +def set_filename(indict): + """ + Create standardised filename as defined in 'file_name' entry. + """ + fn = indict['file_name'] + if isinstance(fn, list): + fnd = indict['file_name_date_section'] + if isinstance(fnd, list): + fnd = [str(indict[k]) for k in fnd] + fnd = [indict['file_name_substitutions'].get(v, v) for v in fnd] + if indict['file_name_omit_empty']: + fnd = [v for v in fnd if v != ''] + if fnd[-1][0] == '%': + # omit _ since date specification already supplies leading _ + indict['file_name_date_section'] = '_'.join(fnd[0:-1]) + fnd[-1] + else: + indict['file_name_date_section'] = '_'.join(fnd) + fn = [str(indict[k]) for k in fn] +# TODO: make substitutions specific to particular components of indict['file_name']? + fn = [indict['file_name_substitutions'].get(v, v) for v in fn] + if indict['file_name_omit_empty']: + fn = [v for v in fn if v != ''] + return indict['file_name_separator'].join(fn) + else: + return fn + + +def strout(v): + """Return string representation, with double quotes around strings.""" + if isinstance(v, str): + return '"' + v + '"' + else: + return str(v) + + +indata = yaml.load(open('diag_table_source.yaml', 'r'), Loader=yaml.SafeLoader) +outstrings = [] # strings to write to diag_table +filenames = {} # diagnostic output filenames + +# global section +d = indata['global_defaults'] +outstrings.append(d['title']) +outstrings.append(' '.join([str(x) for x in d['base_date']])) +outstrings.append(''' +######################################################################################################### +# # +# DO NOT EDIT! Instead, edit diag_table_source.yaml and run make_diag_table.py to re-generate this file # +# # +#########################################################################################################''') + +# interleaved file and field sections +for k, grp in indata['diag_table'].items(): + # ensure expected entries are present in group + if grp is None: + grp = dict() + grp['defaults'] = grp.get('defaults', dict()) + if grp['defaults'] is None: + grp['defaults'] = dict() + grp['fields'] = grp.get('fields', dict()) + if grp['fields'] is None: + grp['fields'] = dict() + + outstrings.append('\n\n# '+ k) # use group name as a comment + + for field_name, field_dict in grp['fields'].items(): + + if field_dict is None: + field_dict = {} + + # combine field_dict with defaults into one dict f + f = {**indata['global_defaults'], + **grp['defaults'], + **field_dict, + 'field_name': field_name} + + if f['output_name'] is None: + f['output_name'] = f['field_name'] + + fname = set_filename(f) + if fname not in filenames: # to ensure that each filename is specified once only + fnameline = [fname, f['output_freq'], f['output_freq_units'], + f['file_format'], f['time_axis_units'], f['time_axis_name']] + if 'new_file_freq' in f: + if f['new_file_freq'] is not None: + fnameline.extend([f['new_file_freq'], f['new_file_freq_units']]) + if 'start_time' in f: + if f['start_time'] is not None: + fnameline.append(' '.join([str(x) for x in f['start_time']])) + if 'file_duration' in f: + if f['file_duration'] is not None: + fnameline.extend([f['file_duration'], f['file_duration_units']]) + outstrings.append('') + outstrings.append(', '.join([strout(v) for v in fnameline])) + filenames[fname] = None + + if f['reduction_method'] in ['snap', False]: + f['reduction_method'] = 'none' + if f['reduction_method'] in ['mean', True]: + f['reduction_method'] = 'average' + + fieldline = [f['module_name'], f['field_name'], f['output_name'], + fname, f['time_sampling'], f['reduction_method'], + f['regional_section'], f['packing']] + outstrings.append(', '.join([strout(v) for v in fieldline])) + +# output outstrings +with open('diag_table', 'w') as f: + for line in outstrings: + f.write('%s\n' % line) diff --git a/tools/resub.sh b/tools/resub.sh new file mode 100755 index 0000000..e70f56a --- /dev/null +++ b/tools/resub.sh @@ -0,0 +1,60 @@ +#!/usr/bin/bash + +logfile='resubmit.log' +counterfile='resubmit.count' +outfile='access-om2.err' + +MAX_RESUBMISSIONS=2 +date >> ${logfile} + +# Define errors from which a resubmit is appropriate +declare -a errors=( + "Segmentation fault: address not mapped to object" + "Segmentation fault: invalid permissions for mapped object" + "Transport retry count exceeded" + "atmosphere/input.nml" + ) + +resub=false +for error in "${errors[@]}" +do + if grep -q "${error}" ${outfile} + then + echo "Error found: ${error}" >> ${logfile} + resub=true + break + else + echo "Error not found: ${error}" >> ${logfile} + fi +done + +if ! ${resub} +then + echo "Error not eligible for resubmission" >> ${logfile} + exit 0 +fi + +if [ -f "${counterfile}" ] +then + PAYU_N_RESUB=$(cat ${counterfile}) +else + echo "Reset resubmission counter" >> ${logfile} + PAYU_N_RESUB=${MAX_RESUBMISSIONS} +fi + +echo "Resubmission counter: ${PAYU_N_RESUB}" >> ${logfile} + +if [[ "${PAYU_N_RESUB}" -gt 0 ]] +then + # Sweep and re-run + ${PAYU_PATH}/payu sweep >> ${logfile} + ${PAYU_PATH}/payu run -n ${PAYU_N_RUNS} >> ${logfile} + # Decrement resub counter and save to counter file + ((PAYU_N_RESUB=PAYU_N_RESUB-1)) + echo "${PAYU_N_RESUB}" > ${counterfile} +else + echo "Resubmit limit reached ... " >> ${logfile} + rm ${counterfile} +fi + +echo "" >> ${logfile}