changeset 1272:15865fbda16e feature/poroelastic

Set default stiffness tensors to 0 in CurvilinearAnisotropic schemes
author Martin Almquist <malmquist@stanford.edu>
date Sun, 31 May 2020 21:59:09 -0700
parents b5025bd67be1
children cf542444f022
files +scheme/Elastic2dCurvilinearAnisotropic.m +scheme/Elastic2dCurvilinearAnisotropicUpwind.m
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
diff -r b5025bd67be1 -r 15865fbda16e +scheme/Elastic2dCurvilinearAnisotropic.m
--- a/+scheme/Elastic2dCurvilinearAnisotropic.m	Sun May 31 21:58:40 2020 -0700
+++ b/+scheme/Elastic2dCurvilinearAnisotropic.m	Sun May 31 21:59:09 2020 -0700
@@ -73,7 +73,7 @@
                 for j = 1:dim
                     for k = 1:dim
                         for l = 1:dim
-                            C_default{i,j,k,l} = @(x,y) 0*x + 1;
+                            C_default{i,j,k,l} = @(x,y) 0*x ;
                         end
                     end
                 end
diff -r b5025bd67be1 -r 15865fbda16e +scheme/Elastic2dCurvilinearAnisotropicUpwind.m
--- a/+scheme/Elastic2dCurvilinearAnisotropicUpwind.m	Sun May 31 21:58:40 2020 -0700
+++ b/+scheme/Elastic2dCurvilinearAnisotropicUpwind.m	Sun May 31 21:59:09 2020 -0700
@@ -73,7 +73,7 @@
                 for j = 1:dim
                     for k = 1:dim
                         for l = 1:dim
-                            C_default{i,j,k,l} = @(x,y) 0*x + 1;
+                            C_default{i,j,k,l} = @(x,y) 0*x;
                         end
                     end
                 end