Changeset 10429
- Timestamp:
- 11/02/11 11:37:56 (14 years ago)
- Location:
- issm/trunk/src/m/model/plot
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/model/plot/plot_BC.m
r10129 r10429 7 7 8 8 %plot dirichlets 9 h1=plot(md.mesh.x(find(~isnan(md.diagnostic.spcvx(1:md.mesh.numberofvertices,1)))),md.mesh.y(find(~isnan(md.diagnostic.spcvx(1:md.mesh.numberofvertices,1)))),'ro','MarkerSize',14,'MarkerFaceColor','r'); 10 h2=plot(md.mesh.x(find(~isnan(md.diagnostic.spcvy(1:md.mesh.numberofvertices,1)))),md.mesh.y(find(~isnan(md.diagnostic.spcvy(1:md.mesh.numberofvertices,1)))),'bo','MarkerSize',10,'MarkerFaceColor','b'); 11 h3=plot(md.mesh.x(find(~isnan(md.diagnostic.spcvz(1:md.mesh.numberofvertices,1)))),md.mesh.y(find(~isnan(md.diagnostic.spcvz(1:md.mesh.numberofvertices,1)))),'yo','MarkerSize',6 ,'MarkerFaceColor','y'); 9 h1=plot3(... 10 md.mesh.x(find(~isnan(md.diagnostic.spcvx(1:md.mesh.numberofvertices,1)))),... 11 md.mesh.y(find(~isnan(md.diagnostic.spcvx(1:md.mesh.numberofvertices,1)))),... 12 md.mesh.z(find(~isnan(md.diagnostic.spcvx(1:md.mesh.numberofvertices,1)))),... 13 'ro','MarkerSize',14,'MarkerFaceColor','r'); 14 h2=plot3(... 15 md.mesh.x(find(~isnan(md.diagnostic.spcvy(1:md.mesh.numberofvertices,1)))),... 16 md.mesh.y(find(~isnan(md.diagnostic.spcvy(1:md.mesh.numberofvertices,1)))),... 17 md.mesh.z(find(~isnan(md.diagnostic.spcvy(1:md.mesh.numberofvertices,1)))),... 18 'bo','MarkerSize',10,'MarkerFaceColor','b'); 19 h3=plot3(... 20 md.mesh.x(find(~isnan(md.diagnostic.spcvz(1:md.mesh.numberofvertices,1)))),... 21 md.mesh.y(find(~isnan(md.diagnostic.spcvz(1:md.mesh.numberofvertices,1)))),... 22 md.mesh.z(find(~isnan(md.diagnostic.spcvz(1:md.mesh.numberofvertices,1)))),... 23 'yo','MarkerSize',6 ,'MarkerFaceColor','y'); 12 24 13 25 %update legend -
issm/trunk/src/m/model/plot/plot_manager.m
r9771 r10429 65 65 plot_vertexnumbering(md,options,subplotwidth,i); 66 66 return; 67 68 67 case 'highlightvertices', 69 68 plot_highlightvertices(md,options,subplotwidth,i); … … 87 86 plot_partition(md,options,nlines,ncols,i); 88 87 return; 88 case 'referential', 89 plot_referential(md,options,nlines,ncols,i); 90 return; 89 91 case 'riftvel', 90 92 plot_riftvel(md,options,nlines,ncols,i); … … 93 95 plot_riftnumbering(md,options,nlines,ncols,i); 94 96 return; 95 96 97 case 'rifts', 97 98 plot_rifts(md,options,nlines,ncols,i); -
issm/trunk/src/m/model/plot/plotdoc.m
r10284 r10429 26 26 disp(' - ''highlightvertices'': to highlight vertices (use highlight option to enter the vertex list'); 27 27 disp(' - ''mesh'': draw mesh using trisurf'); 28 disp(' - ''referential'': diagnostic referential'); 28 29 disp(' - ''riftvel'': velocities along rifts'); 29 30 disp(' - ''riftrelvel'': relative velocities along rifts');
Note:
See TracChangeset
for help on using the changeset viewer.