view default_field.m @ 673:9e1d2351f539 feature/poroelastic

Change penalties in Free BC to enable mixed Dirichlet/Free BC.
author Martin Almquist <malmquist@stanford.edu>
date Sat, 23 Dec 2017 15:42:11 +0100
parents 14bf01b7a068
children 50cafc4b9e40
line wrap: on
line source

function default_field(s, f, val)
    if isfield(s,f)
        return
    end
    s.(f) = val;
    assignin('caller', inputname(1),s);
end