setplot1.m.html CLAWPACK  
 Source file:   setplot1.m
 Directory:   /Users/rjl/clawpack_src/clawpack_master/apps/fvmbook/chap7/acouinflow
 Converted:   Sat Mar 23 2024 at 11:05:19   using clawcode2html
 This documentation file will not reflect any later changes in the source file.

 
%  SETPLOT1 sets user defined plotting parameters
%
%      User defined Matlab script for setting various Clawpack plotting
%      parameters.  This script is called by PLOTCLAW1.  A default
%      version of this script can be found in claw/matlab/setplot1.m and
%      copied to users working directory and modifed to set things up
%      differently.
%
%      Parameters that can be set with SETPLOT1
%
%        OutputFlag          - set to 'ascii' or 'hdf'.
%        PlotStyle           - used in plot command for line color and type.
%        mq                  - which component of q to plot
%        UserVariable        - Set to 1 to specify a user defined variable.
%        UserVariableFile    - name of m-file mapping data to q
%        MappedGrid          - set to 1 if mapc2p.m exists for nonuniform
%                              grid
%        MaxFrames           - max number of frames
%
%      All parameters can be modified by typing 'k' at the PLOTCLAW1 prompt.
%
%      See PLOTCLAW1.

mq = 1:2;                       % which component(s) of q to plot
UserVariable = 0;             % set to 1 to specify a user-defined variable
UserVariableFile = ' ';       % name of m-file mapping data to q
MappedGrid = 0;               % set to 1 if mapc2p.m exists for nonuniform grid
PlotStyle = setplotstyle('b-');  % used in plot command for line color and type
MaxFrames = 1000;                % max number of frames to loop over