changeset 973:f5a99cca4654 feature/poroelastic

Remove unused properties in Elastic2dVariable
author Martin Almquist <malmquist@stanford.edu>
date Tue, 25 Dec 2018 16:26:20 +0100
parents 104f0af001e0
children 1c334842bf23
files +scheme/Elastic2dVariable.m
diffstat 1 files changed, 0 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
diff -r 104f0af001e0 -r f5a99cca4654 +scheme/Elastic2dVariable.m
--- a/+scheme/Elastic2dVariable.m	Tue Dec 25 08:33:35 2018 +0100
+++ b/+scheme/Elastic2dVariable.m	Tue Dec 25 16:26:20 2018 +0100
@@ -32,14 +32,12 @@
 
         H, Hi, H_1D % Inner products
         e_l, e_r
-        e_w, e_e, e_s, e_n
 
 
         d1_l, d1_r % Normal derivatives at the boundary
         E % E{i}^T picks out component i
 
         H_boundary % Boundary inner products
-        H_w, H_e, H_s, H_n
 
         % Kroneckered norms and coefficients
         RHOi_kron
@@ -150,10 +148,6 @@
             obj.e_l{2} = kron(I{1},e_l{2});
             obj.e_r{1} = kron(e_r{1},I{2});
             obj.e_r{2} = kron(I{1},e_r{2});
-            obj.e_w = obj.e_l{1};
-            obj.e_e = obj.e_r{1};
-            obj.e_s = obj.e_l{2};
-            obj.e_n = obj.e_r{2};
 
             obj.d1_l{1} = kron(d1_l{1},I{2});
             obj.d1_l{2} = kron(I{1},d1_l{2});
@@ -192,10 +186,6 @@
             obj.H_boundary{1} = H{2};
             obj.H_boundary{2} = H{1};
             obj.H_1D = {H{1}, H{2}};
-            obj.H_w = H{2};
-            obj.H_e = H{2};
-            obj.H_s = H{1};
-            obj.H_n = H{1};
 
             % E{i}^T picks out component i.
             E = cell(dim,1);