Index: /issm/trunk/test/Verification/test27_Balanced3d/79North.par
===================================================================
--- /issm/trunk/test/Verification/test27_Balanced3d/79North.par	(revision 3535)
+++ /issm/trunk/test/Verification/test27_Balanced3d/79North.par	(revision 3535)
@@ -0,0 +1,51 @@
+%Start defining model parameters here
+
+disp('      creating geometry');
+if md.numberofgrids~=702,
+	error('79North.par error message: Model can not be parameterize if numgrids != 1619');
+end
+load('79Northdata.mat');
+md.surface=surface;
+md.bed=bed;
+md.thickness=thickness;
+md.vx=vx;
+md.vy=vy;
+
+disp('      add melting on the ice shelf');
+md.melting=zeros(md.numberofgrids,1);
+pos=find(md.gridoniceshelf);
+md.melting(pos)=10;
+
+disp('      creating drag');
+md.drag_type=2;
+md.drag=50*ones(md.numberofgrids,1);
+%Take care of iceshelves: no basal drag
+pos=find(md.elementoniceshelf);
+md.drag(md.elements(pos,:))=0;
+md.p=ones(md.numberofelements,1);
+md.q=ones(md.numberofelements,1);
+md.viscosity_overshoot=0.3;
+
+disp('      creating temperature');
+md.observed_temperature=(273-20)*ones(md.numberofgrids,1);
+
+disp('      creating flow law paramter');
+md.B=paterson(md.observed_temperature);
+md.n=3*ones(md.numberofelements,1);
+
+%Deal with boundary conditions:
+md=SetMarineIceSheetBC(md);
+pos=find(md.gridonboundary);
+md.spcthickness(pos,1)=1;
+md.spcthickness(pos,2)=md.thickness(pos);
+
+%Parallel options
+md.np=7;
+md.time=50;
+md.waitonlock=90;
+
+%Misc
+md.verbose=10;
+md.plot=0;
+md.eps_abs=NaN;
+md.eps_rel=0.05;
Index: /issm/trunk/test/Verification/test27_Balanced3d/DomainOutline.exp
===================================================================
--- /issm/trunk/test/Verification/test27_Balanced3d/DomainOutline.exp	(revision 3535)
+++ /issm/trunk/test/Verification/test27_Balanced3d/DomainOutline.exp	(revision 3535)
@@ -0,0 +1,22 @@
+## Name:DomainOutline
+## Icon:0
+# Points Count Value
+16 1.000000
+# X pos Y pos
+464009.1397656691 -1027407.4008438819
+434858.8796422836 -1057322.8251592305
+420709.3008232680 -1062000.9573566925
+409964.1319456697 -1051906.0405095378
+408368.3147856303 -1063478.2622611541
+403368.0876841737 -1083544.9872134251
+426135.0791674018 -1101272.6460669651
+444221.0069811812 -1107551.1919109272
+462838.8738483069 -1083298.7697293481
+451455.3781066929 -1081082.8123726556
+474328.7574005903 -1040333.8187579215
+490074.1533796453 -1041072.4712101523
+489754.9899476374 -1026299.4221655356
+477094.8404779918 -1020390.2025476890
+468158.2643817714 -1015096.5266400346
+464009.1397656691 -1027407.4008438819
+
Index: /issm/trunk/test/Verification/test27_Balanced3d/IceShelf.exp
===================================================================
--- /issm/trunk/test/Verification/test27_Balanced3d/IceShelf.exp	(revision 3535)
+++ /issm/trunk/test/Verification/test27_Balanced3d/IceShelf.exp	(revision 3535)
@@ -0,0 +1,13 @@
+## Name:IceShelf
+## Icon:0
+# Points Count Value
+7 1.000000
+# X pos Y pos
+434007.7771569293 -1056707.2814490383
+452306.4805920472 -1080467.2686624634
+493584.9511317319 -1048458.9957324605
+496457.4220198027 -1015096.5266400346
+460179.1785815747 -1009310.4157642265
+441667.6995251182 -1023714.1385827276
+434007.7771569293 -1056707.2814490383
+
Index: /issm/trunk/test/Verification/test27_Balanced3d/configuration.m
===================================================================
--- /issm/trunk/test/Verification/test27_Balanced3d/configuration.m	(revision 3535)
+++ /issm/trunk/test/Verification/test27_Balanced3d/configuration.m	(revision 3535)
@@ -0,0 +1,27 @@
+%name
+testname='test02_IceShelfIceFrontM3d';
+
+%meshing
+resolution=2000;
+domainname='DomainOutline.exp';
+riftname='';
+rifts=0;
+
+%geography
+iceshelfname='IceShelf.exp';
+icesheetname='';
+
+%parameterization
+parametername='79North.par';
+			
+%elements type
+elementstype='''macayeal'',''all''';
+
+%extrusion
+numlayers=4;
+extrusionexponent=1;
+
+%sequences          analysis      sub_analysis  qmu   control  control_fit parallel
+sequences={  {'balancedthickness',  'none',      0 ,     0,      'nan'        0    };...
+             {'balancedthickness',  'none',      0 ,     0,      'nan'        1    };...
+	};
