Changeset 2116


Ignore:
Timestamp:
09/07/09 23:09:55 (15 years ago)
Author:
Eric.Larour
Message:

Took out graphics, graphics_data output from dakota.
Included optimized runs, without restarts, in dakota.

Location:
issm/trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/solutions/dakota/dakota_in_params.m

    r2087 r2116  
    5454end
    5555if ~isfield(params,'tabular_graphics_data')
    56     params.tabular_graphics_data=true;
     56    params.tabular_graphics_data=false;
    5757end
    5858% could use unique file name rather than dakota default
    5959if ~isfield(params,'tabular_graphics_file')
    60     params.tabular_graphics_file='dakota_tabular.dat';
     60    params.tabular_graphics_file=false;
    6161end
    6262
     
    6969    params.distribution='cumulative';
    7070end
     71
     72if ~isfield(params,'output')
     73    params.output='normal';
     74end
     75
    7176
    7277%%  model section
     
    104109    params.failure_capture='abort';
    105110end
     111if ~isfield(params,'deactivate')
     112    params.deactivate='evaluation_cache restart_file';
     113end
     114
     115
    106116if ~isfield(params,'parameters_file')
    107117    params.parameters_file='params.in';
  • issm/trunk/src/m/solutions/dakota/dakota_in_write.m

    r1014 r2116  
    8484
    8585method_write(fidi,dmeth,dresp,params);
     86param_write(fidi,'\t  ','output','   ','\n',params);
    8687
    8788%  write the model section
     
    408409    end
    409410    param_write(fidi,'\t  ','failure_capture','   ','\n',params);
     411    param_write(fidi,'\t  ','deactivate','   ','\n',params);
    410412end
    411413
  • issm/trunk/test/Verification/IceSheetIceFrontM2dDakota_25/Square.par

    r2110 r2116  
    3333
    3434%Parallel options
    35 md.np=3;
     35md.np=8;
    3636md.time=50;
    3737md.waitonlock=1;
Note: See TracChangeset for help on using the changeset viewer.