Mercurial > repos > public > sbplib
comparison +rv/+diffops/constructSchemeDiffOps.m @ 1190:79618b58b0a0 feature/rv
Refactor constructDiffops and remove closures from some of the diffops used to compute the residual.
| author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
|---|---|
| date | Mon, 08 Jul 2019 15:12:19 +0200 |
| parents | +rv/+diffops/constructSchemeDiffOp.m@65a577db5ca0 |
| children |
comparison
equal
deleted
inserted
replaced
| 1189:6cb03209f0a7 | 1190:79618b58b0a0 |
|---|---|
| 1 function [D_scheme, penalties, D_f] = constructSchemeDiffOps(scheme, g, order, schemeParams, opSet, BCs) | |
| 2 %% DiffOps for solution vector | |
| 3 [D_f, closures, penalties] = rv.diffops.constructFluxDiffOps(scheme, g, order, schemeParams, opSet, BCs); | |
| 4 D_scheme = rv.diffops.addClosuresToDiffOp(D_f, closures); | |
| 5 D2 = rv.diffops.constructSymmetricD2(g, order, opSet); | |
| 6 D_scheme = @(v,viscosity)(D_scheme(v) + D2(viscosity)*v); | |
| 7 end |
