Mercurial > repos > public > sbplib
annotate +rv/+diffops/constructFluxDiffOpWithClosures.m @ 1187:5aa3049a4212 feature/rv
Allow for time dependent data when construcing the ODE RHS
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Mon, 08 Jul 2019 14:48:56 +0200 |
parents | beecb580c5bf |
children |
rev | line source |
---|---|
1163
65a577db5ca0
Move all functions in constructDiffOps to subpackage and refactor
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
diff
changeset
|
1 function [D, penalties] = constructFluxDiffOpWithClosures(scheme, g, order, schemeParams, opSet, BCs) |
1180
beecb580c5bf
Add missing semicolons
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
1163
diff
changeset
|
2 [D, diffOp] = rv.diffops.constructFluxDiffOp(scheme, g, order, schemeParams, opSet, BCs); |
beecb580c5bf
Add missing semicolons
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
1163
diff
changeset
|
3 [D, penalties] = rv.diffops.addClosuresToDiffOp(diffOp, D, BCs); |
1163
65a577db5ca0
Move all functions in constructDiffOps to subpackage and refactor
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
diff
changeset
|
4 end |