Changeset 1110


Ignore:
Timestamp:
06/25/09 17:50:05 (16 years ago)
Author:
Eric.Larour
Message:

Added plot_segments, and some modifs to importance factors plotting

Location:
issm/trunk/src/m/classes/public/plot
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/public/plot/plot_manager.m

    r346 r1110  
    8484                        plot_segmentonneumann(md,options_structure,width,i,data)
    8585                        return
     86                case 'segments'
     87                        plot_segments(md,options_structure,width,i,data)
     88                        return
    8689                case {'strainrate_tensor','strainrate','strainrate_principal','strainrate_principalaxis1','strainrate_principalaxis2','strainrate_principalaxis3',...
    8790                                'stress_tensor','stress','stress_principal','stress_principalaxis1','stress_principalaxis2','stress_principalaxis3',...
  • issm/trunk/src/m/classes/public/plot/plot_qmuimportancefactors.m

    r345 r1110  
    3535end
    3636responsefunctions=responsefunctions(found);
    37 nfun=size(responsefunctions.desvar,1);
     37nfun=size(responsefunctions.var,1);
    3838
    3939%Now recover response to the correct design variable
     
    4141count=0;
    4242for i=1:nfun,
    43         desvar=responsefunctions.desvar{i};
    44         if strncmpi(desvar,descriptor,descriptorlength),
     43        var=responsefunctions.var{i};
     44        if strncmpi(var,descriptor,descriptorlength),
    4545                count=count+1;
    4646                importancefactors(count)=responsefunctions.impfac(i);
Note: See TracChangeset for help on using the changeset viewer.