annotate assertType.m @ 1031:2ef20d00b386 feature/advectionRV

For easier comparison, return both the first order and residual viscosity when evaluating the residual. Add the first order and residual viscosity to the state of the RungekuttaRV time steppers
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Thu, 17 Jan 2019 10:25:06 +0100
parents 75f9b7a80f28
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
486
e9e3973456c0 Add assert frunction for type
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
1 function assertType(obj, type)
583
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
2 if ~iscell(type)
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
3 if ~isa(obj, type)
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
4 error('sbplib:assertType:wrongType', '"%s" must have type "%s", found "%s"', inputname(1), type, class(obj));
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
5 end
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
6 else
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
7 if ~isAnyOf(obj, type)
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
8 error('sbplib:assertType:wrongType', '"%s" must be one of the types %s, found "%s"', inputname(1), toString(type), class(obj));
75f9b7a80f28 Allow more than one type in type assertion
Jonatan Werpers <jonatan@werpers.com>
parents: 486
diff changeset
9 end
486
e9e3973456c0 Add assert frunction for type
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
10 end
e9e3973456c0 Add assert frunction for type
Jonatan Werpers <jonatan@werpers.com>
parents:
diff changeset
11 end