Mercurial > repos > public > sbplib
diff +sbp/D4Variable.m @ 328:31d6698c1edf feature/beams
Clean up and fixing of new operators
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 28 Sep 2016 12:39:12 +0200 |
parents | c0cbffcf6513 |
children | 25b01643e438 |
line wrap: on
line diff
--- a/+sbp/D4Variable.m Tue Sep 27 09:46:58 2016 +0200 +++ b/+sbp/D4Variable.m Wed Sep 28 12:39:12 2016 +0200 @@ -1,24 +1,20 @@ classdef D4Variable < sbp.OpSet properties - D1 % SBP operator approximating first derivative - H % Norm matrix - HI % H^-1 - Q % Skew-symmetric matrix - e_l % Left boundary operator - e_r % Right boundary operator - d1_l % Left boundary first derivative - d1_r % Right boundary first derivative - d2_l % Left boundary second derivative - d2_r % Right boundary second derivative - d3_l % Left boundary third derivative - d3_r % Right boundary third derivative - D2 % SBP operator for second derivative - M % Norm matrix, second derivative - D4 % SBP operator for fourth derivative - M4 % Norm matrix, fourth derivative m % Number of grid points. h % Step size x % grid + H % Norm matrix + HI % H^-1 + D1 % SBP operator approximating first derivative + D2 % SBP operator for second derivative + D4 % SBP operator for fourth derivative + Q % Skew-symmetric matrix + M % Norm matrix, second derivative + M4 % Norm matrix, fourth derivative + e_l, e_r % Left and right boundary operator + d1_l, d1_r % Left and right boundary first derivative + d2_l, d2_r % Left and right boundary second derivative + d3_l, d3_r % Left and right boundary third derivative borrowing % Struct with borrowing limits for different norm matrices end