Changeset 6815
- Timestamp:
- 12/27/10 09:56:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/model/plot/plot_transient_movie.m
r4330 r6815 16 16 end 17 17 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 20 23 21 24 %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) 24 26 25 27 %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']; 28 32 plot_unit(x,y,z,elements,data,is2d,datatype,options) 29 33 apply_options_movie(md,options,titlestring); … … 35 39 frame=getframe(gcf); 36 40 [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; 38 42 else 39 43 frame=getframe(gcf);
Note:
See TracChangeset
for help on using the changeset viewer.