Changeset 6815


Ignore:
Timestamp:
12/27/10 09:56:30 (14 years ago)
Author:
Mathieu Morlighem
Message:

Fixed plot_transient_movie.m

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/model/plot/plot_transient_movie.m

    r4330 r6815  
    1616        end
    1717
    18         %process model
    19         [x y z elements is2d]=processmesh(md,[],options);
     18        if md.dim==2,
     19                results=md.results.Transient2DSolution;
     20        else
     21                results=md.results.Transient3DSolution;
     22        end
    2023
    2124        %loop over the time steps
    22         for i=1:length(md.results.transient)
    23                 eval(['data=md.results.transient(' num2str(i) ').' num2str(field) ';']);
     25        for i=1:length(results)
    2426
    2527                %process data
    26                 [data datatype]=processdata(md,data,options);
    27                 titlestring=[field ' at time ' num2str(md.results.transient(i).time) ' year'];
     28                [x y z elements is2d]=processmesh(md,results(i).(field),options);
     29                [data datatype]=processdata(md,results(i).(field),options);
     30
     31                titlestring=[field ' at time ' num2str(results(i).time/md.yts) ' year'];
    2832                plot_unit(x,y,z,elements,data,is2d,datatype,options)
    2933                apply_options_movie(md,options,titlestring);
     
    3539                                frame=getframe(gcf);
    3640                                [images,map]=rgb2ind(frame.cdata,256,'nodither');
    37                                 images(1,1,1,length(md.results.transient))=0;
     41                                images(1,1,1,length(results))=0;
    3842                        else
    3943                                frame=getframe(gcf);
Note: See TracChangeset for help on using the changeset viewer.