|
afterframe.m.html |
|
|
Source file: afterframe.m
|
|
Directory: /Users/rjl/git/rjleveque/clawpack-4.6.3/book/chap21/radialdam
|
|
Converted: Mon Jan 21 2013 at 20:15:39
using clawcode2html
|
|
This documentation file will
not reflect any later changes in the source file.
|
if PlotType ~= 4
axis([-2.5 2.5 -2.5 2.5])
axis square
end
if PlotType==4
axis([0 2.5 0 2.1])
dir = './1drad/';
dim = 1;
[amrdata1d,t1d] = readamrdata(dim,Frame,dir);
if isempty(t1d)
disp('Run xclaw in 1drad to generate 1d reference solution')
else
hold on;
[q1d,x1d] = plotframe1ez(amrdata1d,mq,'r-');
hold off;
end
end