0001 function conf = get_glimmer_default_config_flat()
0002
0003
0004
0005 conf = struct( ...
0006 'global_mean_precipitation' , 3.0, ...
0007 'global_precipitation_range' , 0.0, ...
0008 'global_mean_sl_temperature' , 0.0,...
0009 'global_sl_temperature_range' , 9.0,...
0010 'global_lapse_rate' , -0.0065, ...
0011 'snow_threshold' , 1.0, ...
0012 'pptm_file_name' , {'test_pptm0.txt'}, ...
0013 'sstm_file_name' , {'test_sstm_m12.txt'}, ...
0014 'dx' , 1.0, ...
0015 'dy' , 1.0, ...
0016 'ix' , 0.0, ...
0017 'iy' , -80, ...
0018 'nx' , 51, ...
0019 'ny' , 101, ...
0020 'wmax' , 0.6, ...
0021 'pddfac_ice' , 0.008, ...
0022 'pddfac_snow' , 0.003, ...
0023 'ewn' , 258, ...
0024 'nsn' , 237, ...
0025 'upn' , 11, ...
0026 'dew' , 10000, ...
0027 'dns' , 10000, ...
0028 'temperature' , 1, ...
0029 'flow_law' , 0, ...
0030 'marine_margin' , 3, ...
0031 'stress_calc' , 2, ...
0032 'evolution' , 0, ...
0033 'basal_water' , 2, ...
0034 'slip_coeff' , 2, ...
0035 'sliding_law' , 0, ...
0036 'vertical_integration' , 0, ...
0037 'hotstart' , 0, ...
0038 'topo_is_relaxed' , 1, ...
0039 'lithosphere' , 1, ...
0040 'asthenosphere' , 1, ...
0041 'tstart' , 0., ...
0042 'tend' , 40000., ...
0043 'dt' , 0.5, ...
0044 'ntem' , 1., ...
0045 'nvel' , 1., ...
0046 'niso' , 1., ...
0047 'flow_factor' , 1, ...
0048 'geothermal' , -42e-3, ...
0049 'basal_tract_const' , 1.e-4, ...
0050 'ice_limit' , 400, ...
0051 'marine_limit' , -500, ...
0052 'calvin_fraction' , 0.3, ...
0053 'cftitle' , 'Parameteric uncertainty test file', ...
0054 'cfcomment', 'Comment', ...
0055 'cfname', 'filename.nc', ...
0056 'fin1_name' , 'topg_in.nc', ...
0057 'fin1_time', 1, ...
0058 'fout1_name' , 'fileout1.nc', ...
0059 'fout1_frequency', 1000, ...
0060 'fout1_variables' , {'thk','usurf','ablt','acab','sstm','artm','pptm','snow','artm','btemp','uvel','vvel','wvel','slc','topg','calving'}, ...
0061 'fout2_name' , 'fileout2.nc', ...
0062 'fout2_frequency' , 100, ...
0063 'fout2_variables' , {'thk'} ...
0064 );