Changeset 2116
- Timestamp:
- 09/07/09 23:09:55 (15 years ago)
- Location:
- issm/trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/solutions/dakota/dakota_in_params.m
r2087 r2116 54 54 end 55 55 if ~isfield(params,'tabular_graphics_data') 56 params.tabular_graphics_data= true;56 params.tabular_graphics_data=false; 57 57 end 58 58 % could use unique file name rather than dakota default 59 59 if ~isfield(params,'tabular_graphics_file') 60 params.tabular_graphics_file= 'dakota_tabular.dat';60 params.tabular_graphics_file=false; 61 61 end 62 62 … … 69 69 params.distribution='cumulative'; 70 70 end 71 72 if ~isfield(params,'output') 73 params.output='normal'; 74 end 75 71 76 72 77 %% model section … … 104 109 params.failure_capture='abort'; 105 110 end 111 if ~isfield(params,'deactivate') 112 params.deactivate='evaluation_cache restart_file'; 113 end 114 115 106 116 if ~isfield(params,'parameters_file') 107 117 params.parameters_file='params.in'; -
issm/trunk/src/m/solutions/dakota/dakota_in_write.m
r1014 r2116 84 84 85 85 method_write(fidi,dmeth,dresp,params); 86 param_write(fidi,'\t ','output',' ','\n',params); 86 87 87 88 % write the model section … … 408 409 end 409 410 param_write(fidi,'\t ','failure_capture',' ','\n',params); 411 param_write(fidi,'\t ','deactivate',' ','\n',params); 410 412 end 411 413 -
issm/trunk/test/Verification/IceSheetIceFrontM2dDakota_25/Square.par
r2110 r2116 33 33 34 34 %Parallel options 35 md.np= 3;35 md.np=8; 36 36 md.time=50; 37 37 md.waitonlock=1;
Note:
See TracChangeset
for help on using the changeset viewer.