Changeset 963


Ignore:
Timestamp:
06/12/09 15:32:26 (16 years ago)
Author:
Eric.Larour
Message:

Reorganized qmu routines to include serial and parallel qmu now

Location:
issm/trunk/src/m/solutions
Files:
5 added
2 deleted
4 edited

Legend:

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

    r959 r963  
    5353end
    5454
     55%process results
     56results=processresults(models,results);
     57
    5558%now process the results to get response function values
    5659responses=zeros(numel(responsedescriptors),1);
     
    5962        responses(i)=qmuresponse(models,results,descriptor);
    6063end
    61 
  • issm/trunk/src/m/solutions/cielo/diagnostic.m

    r959 r963  
    3636                %launch core of diagnostic solution.
    3737                results=diagnostic_core(models,inputs);
     38       
     39                %process results
     40                md.results.diagnostic=processresults(models,results);
    3841        else
    3942                %launch dakota driver for diagnostic core solution
     
    4144        end
    4245
    43         md.results.diagnostic=processresults(models,results);
    44 
    4546        %stop timing
    4647        t2=clock;
  • issm/trunk/src/m/solutions/dakota/dakota_out_parse.m

    r646 r963  
    183183%  draw box plot
    184184
    185 figure
    186 subplot(2,1,1)
    187 plot_boxplot(dresp);
     185%figure
     186%subplot(2,1,1)
     187%plot_boxplot(dresp);
    188188
    189189%  draw normal probability plot
    190190
    191 subplot(2,1,2)
    192 plot_normplot(dresp);
     191%subplot(2,1,2)
     192%plot_normplot(dresp);
    193193
    194194end
  • issm/trunk/src/m/solutions/dakota/qmumarshall.m

    r780 r963  
    7171%write npart to disk
    7272WriteData(fid,md.npart,'Integer','npart');
     73
     74%write ivar and iresp to disk
     75WriteData(fid,md.ivar,'Integer','ivar');
     76WriteData(fid,md.iresp,'Integer','iresp');
    7377       
    7478%close file
Note: See TracChangeset for help on using the changeset viewer.