Mercurial > repos > public > sbplib
annotate assertType.m @ 1012:1e437c9e5132 feature/advectionRV
Create residual viscosity package +rv and generalize the ResidualViscosity class
- Generalize residual viscosity, by passing user-defined flux and calculating the time derivative outside of the update.
- Create separate RungekuttaRV specifically using interior RV updates
- Separate the artifical dissipation operator from the scheme AdvectionRV1D so that the same scheme can be reused for creating the diff op used by the ResidualViscosity class
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Wed, 05 Dec 2018 13:44:10 +0100 |
parents | 75f9b7a80f28 |
children |
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 |