compare_fire_area.m also diffs ros
[wrf-fire-matlab.git] / quicwind / plot_mesh_test.m
blobd1150154aa0ef098cac2bf2d7c0f6c621c4c2e3e
1 function plot_mesh_test
2 X = uniform_mesh([10,10,10],[1,1,2]);
3 X1 = add_terrain_to_mesh(X,'hill','shift',0.2);
4 figure(1)
5 plot_mesh(X1)
6 X2 = add_terrain_to_mesh(X,'hill','squash',0.2);
7 figure(2)
8 plot_mesh(X2)
9 XR = regular_mesh([10,10,10],[1,1,2],1.2);
10 X3 = add_terrain_to_mesh(XR,'hill','shift',0.1);
11 figure(3)
12 plot_mesh(X3)
13 X4 = add_terrain_to_mesh(XR,'hill','squash',0.1);
14 figure(4)
15 plot_mesh(X4)
16 end