Changes
Page history
Update Aquaplanet slab ocean
authored
Mar 21, 2024
by
Dian Putrasahan
Show whitespace changes
Inline
Side-by-side
Aquaplanet-slab-ocean.md
View page @
ad227b26
...
@@ -211,8 +211,41 @@ While many input forcing files need to change, this is done by changing the link
...
@@ -211,8 +211,41 @@ While many input forcing files need to change, this is done by changing the link
#
#
get_file ${atmmod} input ${aquaindir}/echam6/T63_heatflux_test.nc unit.42
get_file ${atmmod} input ${aquaindir}/echam6/T63_heatflux_test.nc unit.42
```
```
5.
Ozone
```
# # ozone
# if [[ ${io3} = 4 ]]; then # read ozon climatology from file
# ozonedir=/pool/data/ECHAM6/input/${archive_rev_echam6}/${res_atm}/ozone
# if [[ ${piControl} = true ]]; then
# get_file ${atmmod} input ${ozonedir}/${res_atm}_ozone_picontrol.nc ozon${yrs}
# else
# if [[ ${yrs} -le 1849 ]]; then
# get_file ${atmmod} input ${ozonedir}/${res_atm}_ozone_${scenario}_1850.nc ozon${yrs}
# else
# if [[ ${yrs} -le 2014 ]]; then
# get_file ${atmmod} input ${ozonedir}/${res_atm}_ozone_historical_${yrs}.nc ozon${yrs}
# else
# get_file ${atmmod} input ${ozonedir}/${res_atm}_ozone_${scenario}_${yrs}.nc ozon${yrs}
# fi
# fi
# fi
# fi
get_file ${atmmod} input ${aquaindir}/echam6/T63_ozone_historical_1850.nc ozon${yrs}
```
6.
Soil layers
```
#get_file ${srfmod} input jsbach_${grid}_${nsoil}layers_${refyear}_${dvtag}${surface_tag}.nc jsbach.nc
get_file ${srfmod} input ${aquadir}/jsbach_${res_atm}${res_oce}_11tiles_1976_aqua.nc jsbach.nc
```
7.
Land use maps/ cover fraction
```
# [[ ${startyear} -le 1992 ]] && ludir=/pool/data/JSBACH/input/${archive_rev_jsbach}/${res_srf}/land_use_maps
# [[ ${startyear} -gt 1992 ]] && ludir=/pool/data/JSBACH/input/${archive_rev_jsbach}/${res_srf}/land_use_maps/A1B
ludir=/pool/data/JSBACH/input/${archive_rev_jsbach}/${res_srf}/land_use_maps
# get_file ${srfmod} input ${ludir}/cover_fract_${res_srf}_${ntiles}tiles_${startyear}.nc cover_fract.${startyear}.nc
get_file ${srfmod} input ${ludir}/cover_fract_${res_srf}_${ntiles}tiles_2015.nc cover_fract.${startyear}.nc
```
...
...
...
...