Changeset 1039


Ignore:
Timestamp:
06/22/09 08:23:51 (15 years ago)
Author:
Mathieu Morlighem
Message:

extended control so that it looks like diagnostic

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/solutions/cielo/control.m

    r1033 r1039  
    1212        models.analysis_type='control'; %needed for processresults
    1313
    14         displaystring(md.debug,'%s',['reading diagnostic horiz model data']);
    15         md.analysis_type='control'; md.sub_analysis_type=''; models.dh=CreateFemModel(md);
     14        displaystring(md.debug,'%s',['reading control horiz model data']);
     15        md.analysis_type='control'; md.sub_analysis_type='horiz'; models.dh=CreateFemModel(md);
     16
     17        displaystring(md.debug,'\n%s',['reading control vert model data']);
     18        md.analysis_type='control'; md.sub_analysis_type='vert'; models.dv=CreateFemModel(md);
     19
     20        displaystring(md.debug,'\n%s',['reading control stokes model data']);
     21        md.analysis_type='control'; md.sub_analysis_type='stokes'; models.ds=CreateFemModel(md);
     22
     23        displaystring(md.debug,'\n%s',['reading control hutter model data']);
     24        md.analysis_type='control'; md.sub_analysis_type='hutter'; models.dhu=CreateFemModel(md);
     25
     26        displaystring(md.debug,'\n%s',['reading surface and bed slope computation model data']);
     27        md.analysis_type='slope_compute'; md.sub_analysis_type=''; models.sl=CreateFemModel(md);
    1628
    1729        % figure out number of dof: just for information purposes.
     
    3143                md.results.control=processresults(models,results);
    3244        else
    33                 %launch dakota driver for diagnostic core solution
     45                %launch dakota driver for control core solution
    3446                Qmu(models,inputs,models.dh.parameters);
    3547        end
Note: See TracChangeset for help on using the changeset viewer.