view +grid/Structured.m @ 344:61b75d6d4899 feature/beams

Added get method for boundary operators on multiblock DiffOp
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 14 Nov 2016 14:54:53 -0800
parents 513019e3d855
children
line wrap: on
line source

classdef Structured < grid.Grid
    methods (Abstract)
        % Returns the size of the grid in each dimension m = [mx my mz ...]
        m = size(obj); % Is this a good idea? Isn't immersed a structured grid?
        h = scaling(obj);
    end
end