Changeset 14803
- Timestamp:
- 04/30/13 08:35:57 (12 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/modules/GiaDeflectionCorex/GiaDeflectionCorex.cpp
r14768 r14803 71 71 72 72 /*output: */ 73 IssmDouble wi= 1;73 IssmDouble wi=0; 74 74 75 75 /*inputs: */ … … 123 123 /*}}}*/ 124 124 125 // Now, let's set pset from the data that we got in input to GiaDeflectionCorex: 126 125 /*Now, let's set pset from the data that we got in input to GiaDeflectionCorex: */ 127 126 blockp_.pset[0]=lithosphere_thickness; 128 127 blockp_.pset[1]=mantle_viscosity; … … 132 131 blockp_.pset[5]=mantle_density; 133 132 blockp_.pset[6]=re; 134 // blocko_.rhoi=rho_ice; // use this for non-benchmark experiments 135 // blockp_.pset[6]=800000.0; // for testing benchmark, should be in meters 136 blocko_.rhoi=1000.0; // use this for benchmark not rho_ice = 917 kg m^-3 133 blocko_.rhoi=rho_ice; 137 134 138 135 /*loading history: */ 139 136 blocky_.zhload[0]=current_he; 140 137 blocky_.zhload[1]=current_he; 141 // blocky_.zhload[0]=3000; // for testing benchmark142 // blocky_.zhload[1]=3000; // for testing benchmark143 138 144 139 /*times: */ … … 152 147 /*radial distance of i-th element: */ 153 148 blockrad_.distrad=ri/1000.0; // in km 154 // blockrad_.distrad=500.0; // for testing benchmark155 149 156 150 /*Call distme driver: */ 157 151 distme_(&idisk,&iedge); 158 152 159 153 /*Call what0 driver: */ 160 154 what0_(&idisk,&iedge); -
issm/trunk-jpl/test/NightlyRun/runme.m
r14596 r14803 12 12 % 'id' followed by the list of ids requested 13 13 % 'exclude' ids to be excluded from the test 14 % 'benchmark' 'nightly' (nightly run/ daily run) 14 % 'benchmark' 'all' (all of them) 15 % 'nightly' (nightly run/ daily run) 15 16 % 'ismip' : validation of ismip-hom tests 16 17 % 'eismint': validation of eismint tests … … 18 19 % 'mesh' : validation of mesh tests 19 20 % 'adolc' : validation of adolc tests 21 % 'gia' : validation of gia tests 20 22 % ... 21 23 % 'procedure' 'check' : run the test (default) … … 47 49 %GET benchmark {{{ 48 50 benchmark=getfieldvalue(options,'benchmark','nightly'); 49 if ~ismember(benchmark,{'all','nightly','ismip','eismint','thermal','mesh','validation','tranforcing','adolc' })51 if ~ismember(benchmark,{'all','nightly','ismip','eismint','thermal','mesh','validation','tranforcing','adolc','gia'}) 50 52 disp('runme warning: benchmark not supported, defaulting to test ''nightly''') 51 53 benchmark='nightly'; … … 115 117 elseif strcmpi(benchmark,'referential'), 116 118 test_ids=intersect(test_ids,[1601:1602]); 119 elseif strcmpi(benchmark,'gia'), 120 test_ids=intersect(test_ids,[2001:2100]); 117 121 elseif strcmpi(benchmark,'adolc'), 118 122 test_ids=intersect(test_ids,[3001:3020]); -
issm/trunk-jpl/test/NightlyRun/runme.py
r14596 r14803 22 22 'id' followed by the list of ids requested 23 23 'exclude' ids to be excluded from the test 24 'benchmark' 'nightly' (nightly run/ daily run) 24 'benchmark' 'all' (all of the tests) 25 'nightly' (nightly run/ daily run) 25 26 'ismip' : validation of ismip-hom tests 26 27 'eismint': validation of eismint tests 27 28 'thermal': validation of thermal tests 28 29 'mesh' : validation of mesh tests 30 'adolc' : validation of adolc tests 31 'gia' : validation of gia tests 32 29 33 ... 30 34 'procedure' 'check' : run the test (default) … … 50 54 #Process options 51 55 #GET benchmark {{{ 52 if not ismember(benchmark,['all','nightly','ismip','eismint','thermal','mesh','validation','tranforcing','adolc' ]):56 if not ismember(benchmark,['all','nightly','ismip','eismint','thermal','mesh','validation','tranforcing','adolc','gia']): 53 57 print "runme warning: benchmark '%s' not supported, defaulting to test 'nightly'." % benchmark 54 58 benchmark='nightly' … … 113 117 elif strcmpi(benchmark,'referential'): 114 118 test_ids=test_ids.intersection(set(range(1601,1603))) 119 elif strcmpi(benchmark,'gia'): 120 test_ids=test_ids.intersection(set(range(2001,2100))) 115 121 elif strcmpi(benchmark,'adolc'): 116 122 test_ids=test_ids.intersection(set(range(3001,3020)))
Note:
See TracChangeset
for help on using the changeset viewer.