changeset 689:60eb7f46d8d9 feature/poroelastic

Bugfix get_boundary_op in Elastic2d and Heat2d
author Martin Almquist <malmquist@stanford.edu>
date Thu, 15 Feb 2018 16:38:36 -0800
parents eb2f9233acc3
children 8e4274ee6dd8 a9e8c9d71307
files +scheme/Elastic2dVariable.m +scheme/Heat2dVariable.m
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
diff -r eb2f9233acc3 -r 60eb7f46d8d9 +scheme/Elastic2dVariable.m
--- a/+scheme/Elastic2dVariable.m	Mon Feb 12 13:39:39 2018 -0800
+++ b/+scheme/Elastic2dVariable.m	Thu Feb 15 16:38:36 2018 -0800
@@ -403,9 +403,9 @@
                 case 'd'
                     switch boundary
                         case {'w','W','west','West','s','S','south','South'}
-                            return_op = obj.d_l{j};
+                            return_op = obj.d1_l{j};
                         case {'e', 'E', 'east', 'East','n', 'N', 'north', 'North'}
-                            return_op = obj.d_r{j};
+                            return_op = obj.d1_r{j};
                     end
                 otherwise
                     error(['No such operator: operatr = ' op]);
diff -r eb2f9233acc3 -r 60eb7f46d8d9 +scheme/Heat2dVariable.m
--- a/+scheme/Heat2dVariable.m	Mon Feb 12 13:39:39 2018 -0800
+++ b/+scheme/Heat2dVariable.m	Thu Feb 15 16:38:36 2018 -0800
@@ -245,9 +245,9 @@
                 case 'd'
                     switch boundary
                         case {'w','W','west','West','s','S','south','South'}
-                            return_op = obj.d_l{j};
+                            return_op = obj.d1_l{j};
                         case {'e', 'E', 'east', 'East','n', 'N', 'north', 'North'}
-                            return_op = obj.d_r{j};
+                            return_op = obj.d1_r{j};
                     end
                 otherwise
                     error(['No such operator: operatr = ' op]);