changeset 26:d6e600fa8116

Change the test case adding the new developments of fem-fenics
author gedeone-octave <marco.vassallo@outlook.com>
date Mon, 15 Jul 2013 16:32:21 +0200
parents 588064275843
children cb21a4ac2314
files test/laplace.m
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/test/laplace.m	Mon Jul 15 16:30:38 2013 +0200
+++ b/test/laplace.m	Mon Jul 15 16:32:21 2013 +0200
@@ -14,7 +14,10 @@
 # #Import the problem inside Octave
 V  = fem_fs (mshd);
 #Set BC equal to zero on sides with label 2 and 4
-#bc = fem_bc (V, @(x, y) 0.0, [2,4]);
+bc = fem_bc (V, @(x, y) 0.0, [2,4]);
+
+##Set the rhs
+#g = fem_rhs (V, @(x, y));
 
 # #Get the matrices
 # A  = BilinearForm (V, V, bc, "Laplace");