Merge commit 'b453692af7dadf1db40358c02cfa86d182db5d2'
[wrf-fire-matlab.git] / femwind / check_mesh.m
blobab0a6c4c0d7ddbdf3d8fa0aec26b37ade6476332
1 function check_mesh(X)
2 % Check cell array X of size 3 with x,y,z coordinates for correct dimensions
3 % and positive increments
4 % This does not check for increments to be equal in any way
6 x = X{1}; y = X{2}; z = X{3};
7 if ndims(x)~=3|ndims(y)~=3|ndims(z)~=3,
8     error('test_mesh: x y z must be 3D')
9 end
11 [nx1,ny1,nz1] = size(x);
12 if any(size(y)~=[nx1,ny1,nz1])|any(size(z)~=[nx1,ny1,nz1]),
13     error('check_mesh: arrays x y z must be the same size')
14 end
15 if ~all(all((x(2:end,:,:)>x(1:end-1,:,:)))),
16     error('check_mesh: x increments in array x must be positive')
17 end
18 if ~all(all((y(:,2:end,:)>y(:,1:end-1,:)))),
19     error('check_mesh: y increments in array y must be positive')
20 end
21 if ~all(all((z(:,:,2:end)>z(:,:,1:end-1)))),
22     error('check_mesh: z increments in array z must be positive')
23 end