|
| 1 | +# ESMValTool |
| 2 | +--- |
| 3 | +documentation: |
| 4 | + title: Sea ice sensitivity |
| 5 | + |
| 6 | + description: | |
| 7 | + Recipe for quantifying the sensitivity of sea ice to global warming. |
| 8 | + Siconc data is summed for each hemisphere and then compared to the |
| 9 | + change in globally meaned, annually meaned surface air temperature. |
| 10 | + In the northern hemisphere, September sea ice data is used. |
| 11 | + In the southern hemisphere, annual mean sea ice data is used. |
| 12 | + Two plots are produced for each hemisphere, one showing the gradient |
| 13 | + of the direct regression of sea ice area over temperature, and the |
| 14 | + other showing the two separate trends over time. |
| 15 | +
|
| 16 | + authors: |
| 17 | + - parsons_naomi |
| 18 | + - sellar_alistair |
| 19 | + - blockley_ed |
| 20 | + |
| 21 | + maintainer: |
| 22 | + - parsons_naomi |
| 23 | + |
| 24 | +# The default period has been chosen to end in 2020 as this is the last year available in the sea ice observations |
| 25 | +model_defaults: &model_defaults {activity: CMIP, project: CMIP7, exp: historical, start_year: &data_start 1979, end_year: &data_end 2020} |
| 26 | +model_datasets: &model_datasets |
| 27 | + - {<<: *model_defaults, dataset: MOCK-MODEL-LL, institute: MOHC, ensemble: r1i1p1f3, exp: 1pctCO2, grid: g100, label_dataset: True} |
| 28 | + |
| 29 | +obs_defaults: &obs_defaults { project: OBS, observation: True, tier: 2, start_year: *data_start, end_year: *data_end} |
| 30 | +tasa_obs: &tasa_obs |
| 31 | + - { <<: *obs_defaults, dataset: HadCRUT5, type: ground, version: 5.0.1.0-analysis, mip: Amon } |
| 32 | + - { <<: *obs_defaults, dataset: NOAAGlobalTemp, type: ground, version: v5.0.0, mip: Amon } |
| 33 | + |
| 34 | +arctic_siconc_obs: &arctic_siconc_obs |
| 35 | + - { <<: *obs_defaults, dataset: OSI-450-nh, type: reanaly, version: v3, mip: OImon} |
| 36 | + |
| 37 | +antarctic_siconc_obs: &antarctic_siconc_obs |
| 38 | + - { <<: *obs_defaults, dataset: OSI-450-sh, type: reanaly, version: v3, mip: OImon} |
| 39 | + |
| 40 | +preprocessors: |
| 41 | + nh_total_area: |
| 42 | + &nh_total_area |
| 43 | + extract_region: |
| 44 | + start_longitude: 0 |
| 45 | + end_longitude: 360 |
| 46 | + start_latitude: 0 |
| 47 | + end_latitude: 90 |
| 48 | + area_statistics: |
| 49 | + operator: sum |
| 50 | + convert_units: |
| 51 | + units: 1e6 km2 |
| 52 | + |
| 53 | + sh_total_area: |
| 54 | + &sh_total_area |
| 55 | + extract_region: |
| 56 | + start_longitude: 0 |
| 57 | + end_longitude: 360 |
| 58 | + start_latitude: -90 |
| 59 | + end_latitude: 0 |
| 60 | + area_statistics: |
| 61 | + operator: sum |
| 62 | + convert_units: |
| 63 | + units: 1e6 km2 |
| 64 | + |
| 65 | + global_mean: |
| 66 | + &global_mean |
| 67 | + area_statistics: |
| 68 | + operator: mean |
| 69 | + |
| 70 | + annual_mean: |
| 71 | + &annual_mean |
| 72 | + annual_statistics: |
| 73 | + operator: mean |
| 74 | + |
| 75 | + extract_sept: |
| 76 | + &extract_sept |
| 77 | + extract_month: |
| 78 | + month: 9 |
| 79 | + |
| 80 | + pp_arctic_sept_sea_ice: |
| 81 | + <<: *extract_sept |
| 82 | + <<: *nh_total_area |
| 83 | + |
| 84 | + pp_antarctic_avg_ann_sea_ice: |
| 85 | + <<: *annual_mean |
| 86 | + <<: *sh_total_area |
| 87 | + |
| 88 | + pp_avg_ann_global_temp: |
| 89 | + <<: *global_mean |
| 90 | + <<: *annual_mean |
| 91 | + |
| 92 | +diagnostics: |
| 93 | + arctic: |
| 94 | + description: Plots September sea ice sensitivity above 0 latitude in millions of square kilometres |
| 95 | + variables: |
| 96 | + siconc: &siconc |
| 97 | + preprocessor: pp_arctic_sept_sea_ice |
| 98 | + mip: seaIce |
| 99 | + frequency: mon |
| 100 | + region: glb |
| 101 | + branding_suffix: tavg-u-hxy-u |
| 102 | + additional_datasets: |
| 103 | + *model_datasets |
| 104 | + siconc_obs: |
| 105 | + <<: *siconc |
| 106 | + short_name: siconc |
| 107 | + additional_datasets: |
| 108 | + *arctic_siconc_obs |
| 109 | + tas: &tas |
| 110 | + preprocessor: pp_avg_ann_global_temp |
| 111 | + mip: atmos |
| 112 | + frequency: mon |
| 113 | + region: glb |
| 114 | + branding_suffix: tavg-h2m-hxy-u |
| 115 | + additional_datasets: |
| 116 | + *model_datasets |
| 117 | + tasa_obs: &tasa |
| 118 | + <<: *tas |
| 119 | + short_name: tasa |
| 120 | + additional_datasets: |
| 121 | + *tasa_obs |
| 122 | + scripts: |
| 123 | + sea_ice_sensitivity_script: |
| 124 | + script: seaice/seaice_sensitivity.py |
| 125 | + observations: |
| 126 | + observation_period: |
| 127 | + start_year: 1979 |
| 128 | + end_year: 2014 |
| 129 | + sea_ice_sensitivity: |
| 130 | + mean: -4.01 |
| 131 | + standard_deviation: 0.32 |
| 132 | + plausible_range: 1.28 |
| 133 | + |
| 134 | + antarctic: |
| 135 | + description: Plots annual mean sea ice sensitivity below 0 latitude in millions of square kilometres |
| 136 | + variables: |
| 137 | + siconc: |
| 138 | + <<: *siconc |
| 139 | + preprocessor: pp_antarctic_avg_ann_sea_ice |
| 140 | + additional_datasets: |
| 141 | + *model_datasets |
| 142 | + siconc_obs: |
| 143 | + <<: *siconc |
| 144 | + short_name: siconc |
| 145 | + preprocessor: pp_antarctic_avg_ann_sea_ice |
| 146 | + additional_datasets: |
| 147 | + *antarctic_siconc_obs |
| 148 | + tas: |
| 149 | + <<: *tas |
| 150 | + tasa_obs: |
| 151 | + <<: *tasa |
| 152 | + scripts: |
| 153 | + sea_ice_sensitivity_script: |
| 154 | + script: seaice/seaice_sensitivity.py |
0 commit comments