diff +scheme/LaplaceCurvilinearNewCorner.m @ 1080:753de514ae77 feature/poroelastic

Add H_1D to LaplaceCurvilinearNewCorner
author Martin Almquist <malmquist@stanford.edu>
date Sun, 03 Mar 2019 15:00:42 -0800
parents b828e589d540
children 27019aca2f17
line wrap: on
line diff
--- a/+scheme/LaplaceCurvilinearNewCorner.m	Sat Jan 26 16:56:35 2019 -0800
+++ b/+scheme/LaplaceCurvilinearNewCorner.m	Sun Mar 03 15:00:42 2019 -0800
@@ -31,7 +31,7 @@
         s_w, s_e, s_s, s_n % Boundary integral scale factors
 
         % Inner product and operators for logical coordinates
-        H_u, H_v % Norms in the x and y directions
+        H_u, H_v, H_1D % Norms in the x and y directions
         Hi_u, Hi_v
         Hu,Hv % Kroneckerd norms. 1'*Hx*v corresponds to integration in the x dir.
         Hiu, Hiv
@@ -121,6 +121,10 @@
             % Logical operators
             Du = kr(D1_u,I_v);
             Dv = kr(I_u,D1_v);
+            obj.H_u = H_u;
+            obj.H_v = H_v;
+            obj.H_1D = {H_u, H_v};
+
             obj.Hu  = kr(H_u,I_v);
             obj.Hv  = kr(I_u,H_v);
             obj.Hiu = kr(Hi_u,I_v);