view +grid/Structured.m @ 734:eebe24a636c7 feature/poroelastic

Make Elastic2dVariable.size account for components.
author Martin Almquist <malmquist@stanford.edu>
date Wed, 25 Apr 2018 14:46:24 -0700
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