Ignore:
Timestamp:
08/18/09 09:50:07 (16 years ago)
Author:
Mathieu Morlighem
Message:

Added quiver plot

File:
1 edited

Legend:

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

    r1606 r1744  
    1212disp('                Available values for ''data'' are: ');
    1313disp('                  - any field of the model structure. ex: plot(md,''data'',''vel''), or plot(md,''data'',md.vel)');
     14disp('                  - ''basal_drag'': plot the basal drag on the bed (in kPa)');
     15disp('                  - ''basal_dragx'' or ''basal_dragy'' : plot a component of the basal drag on the bed (in kPa)');
    1416disp('                  - ''boundaries'': this will draw all the segment boundaries to the model, including rifts.');
    1517disp('                  - ''deviatoricstress_tensor'': plot the components of the deviatoric stress tensor (tauxx,tauyy,tauzz,tauxy,tauxz,tauyz) if computed');
    1618disp('                  - ''deviatoricstress_principal'': plot the deviatoricstress tensor principal axis and principal values');
    1719disp('                  - ''deviatoricstress_principalaxis1'': arrow plot the first principal axis of the deviatoricstress tensor(replace 1 by 2 or 3 if needed)');
     20disp('                  - ''driving_stress'': plot the driving stress (in kPa)');
    1821disp('                  - ''elements_type'': model used for each element');
    1922disp('                  - ''elementnumbering'': numbering of elements');
     
    2326disp('                  - ''highlightgrids'': to highlight grids (use highlight option to enter the grid list');
    2427disp('                  - ''mesh'': draw mesh using trisurf');
    25 disp('                  - ''quiver'': arrow plot of the velocity in 2d');
    26 disp('                  - ''quiver3'': arrow plot of the velocity in 3d');
    27 disp('                  - ''quivervel'': arrow plot of the velocity superimposed with its magnitude');
    2828disp('                  - ''riftvel'': velocities along rifts');
    2929disp('                  - ''riftrelvel'': relative velocities along rifts');
    3030disp('                  - ''riftpenetration'': penetration levels for a fault');
    31 disp('                  - ''basal_drag'': plot the basal drag on the bed (in kPa)');
    32 disp('                  - ''basal_dragx'' or ''basal_dragy'' : plot a component of the basal drag on the bed (in kPa)');
    33 disp('                  - ''driving_stress'': plot the driving stress (in kPa)');
    3431disp('                  - ''strainrate_tensor'': plot the components of the strainrate tensor (exx,eyy,ezz,exy,exz,eyz) if computed');
    3532disp('                  - ''strainrate_principal'': plot the strainrate tensor principal axis and principal values)');
     
    5451disp('       ''antzoom'': zoom on a given Antarctic basin (''pineislandglacier'',''ronneiceshelf'', type antzoom for a complete list)');
    5552disp('       ''caxis'': modify  colorbar range. (array of type [a b] where b>=a)');
     53disp('       ''colorlevels'':  N or {value1,valu2,value3,...} used if quiver, use different colors for the given number of colors or limits');
    5654disp('       ''colorbar'': add colorbar (string ''on'' or ''off'')');
    5755disp('       ''colorbarpos'': [x,y,dx,dy] where x,y,dx and dy are within [0 1]');
     
    6361disp('       ''density'': density of quivers (one arrow every N nodes, N integer)');
    6462disp('       ''streamlines'': N (number of stream lines) or {[x1 y1],...} (coordinates of seed points) add streanlines on current figure');
    65 disp('       ''wrapping'': repeat ''n'' times the colormap (''n'' must be an integer)');
    6663disp('       ''edgecolor'': same as standard matlab option EdgeColor (color name: ''black'' or RGB array: [0.5 0.2 0.8])');
    6764disp('       ''fontsize'': same as standard matlab option (normal: ''n'',bold: ''b'',light: ''l'',demi: ''d'')');
     
    103100disp('       ''northarrow'': add an arrow pointing north, ''on'' for default value or [x0 y0 length [ratio [width]]] where (x0,y0) are the coordinates of the base, and ratio=headlength/length');
    104101disp('       ''scaleruler'': add a scale ruler, ''on'' for default value or [x0 y0 length width numberofticks] where (x0,y0) are the coordinates of the lower left corner');
     102disp('       ''wrapping'': repeat ''n'' times the colormap (''n'' must be an integer)');
    105103disp(' ');
    106104disp('       any options (except ''data'') can be followed by ''#i'' where ''i'' is the subplot number, or ''#all'' if applied to all plots');
Note: See TracChangeset for help on using the changeset viewer.