Mercurial > repos > public > sbplib
comparison +scheme/Elastic2dVariable.m @ 1050:19d821ddc108 feature/getBoundaryOp
Fix mistakes in adbb80e60b10
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Tue, 22 Jan 2019 11:27:30 -0800 |
parents | adbb80e60b10 |
children | 60c875c18de3 |
comparison
equal
deleted
inserted
replaced
1049:0c504a21432d | 1050:19d821ddc108 |
---|---|
427 % u denotes the solution in the own domain | 427 % u denotes the solution in the own domain |
428 % v denotes the solution in the neighbour domain | 428 % v denotes the solution in the neighbour domain |
429 % Operators without subscripts are from the own domain. | 429 % Operators without subscripts are from the own domain. |
430 | 430 |
431 % Get boundary operators | 431 % Get boundary operators |
432 [e, tau] = obj.getBoundaryOperator({'e_tot','tau_tot'}, boundary); | 432 e = obj.getBoundaryOperator('e_tot', boundary); |
433 [e_v, tau_v] = neighbour_scheme.getBoundaryOperator({'e_tot','tau_tot'}, neighbour_boundary); | 433 tau = obj.getBoundaryOperator('tau_tot', boundary); |
434 | |
435 e_v = neighbour_scheme.getBoundaryOperator('e_tot', neighbour_boundary); | |
436 tau_v = neighbour_scheme.getBoundaryOperator('tau_tot', neighbour_boundary); | |
437 | |
434 H_gamma = obj.getBoundaryQuadrature(boundary); | 438 H_gamma = obj.getBoundaryQuadrature(boundary); |
435 | 439 |
436 % Operators and quantities that correspond to the own domain only | 440 % Operators and quantities that correspond to the own domain only |
437 Hi = obj.Hi_kron; | 441 Hi = obj.Hi_kron; |
438 RHOi = obj.RHOi_kron; | 442 RHOi = obj.RHOi_kron; |