Index: ../trunk-jpl/test/NightlyRun/test426.m =================================================================== --- ../trunk-jpl/test/NightlyRun/test426.m (revision 22336) +++ ../trunk-jpl/test/NightlyRun/test426.m (revision 22337) @@ -13,9 +13,8 @@ md.transient.isstressbalance=0; md.transient.isgroundingline=1; md.groundingline.migration='AggressiveMigration'; -md.mesh.scale_factor=ones(md.mesh.numberofvertices,1); +md.mesh.scale_factor=1.1*ones(md.mesh.numberofvertices,1); md.transient.requested_outputs={'IceVolume','IceVolumeAboveFloatation','IceVolumeAboveFloatationScaled','GroundedArea','FloatingArea','GroundedAreaScaled','FloatingAreaScaled','IceMass'}; -md.mesh.scale_factor=ones(md.mesh.numberofvertices,1); md=extrude(md,3,1.); md.cluster=generic('name',oshostname(),'np',3); Index: ../trunk-jpl/test/NightlyRun/test424.py =================================================================== --- ../trunk-jpl/test/NightlyRun/test424.py (revision 22336) +++ ../trunk-jpl/test/NightlyRun/test424.py (revision 22337) @@ -22,7 +22,7 @@ md.transient.isgroundingline=True md.groundingline.migration='AggressiveMigration' md.transient.requested_outputs=['IceVolume','IceVolumeAboveFloatation','IceVolumeAboveFloatationScaled','GroundedArea','FloatingArea','GroundedAreaScaled','FloatingAreaScaled'] -md.mesh.scale_factor=1*np.ones((md.mesh.numberofvertices)) +md.mesh.scale_factor=1.1*np.ones((md.mesh.numberofvertices)) md.cluster=generic('name',gethostname(),'np',3) md=solve(md,'Transient') Index: ../trunk-jpl/test/NightlyRun/test424.m =================================================================== --- ../trunk-jpl/test/NightlyRun/test424.m (revision 22336) +++ ../trunk-jpl/test/NightlyRun/test424.m (revision 22337) @@ -13,7 +13,7 @@ md.transient.isstressbalance=0; md.transient.isgroundingline=1; md.groundingline.migration='AggressiveMigration'; -md.mesh.scale_factor=ones(md.mesh.numberofvertices,1); +md.mesh.scale_factor=1.1*ones(md.mesh.numberofvertices,1); md.transient.requested_outputs={'IceVolume','IceVolumeAboveFloatation','IceVolumeAboveFloatationScaled','GroundedArea','FloatingArea','GroundedAreaScaled','FloatingAreaScaled'}; md.cluster=generic('name',oshostname(),'np',3); Index: ../trunk-jpl/test/Archives/Archive426.arch =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: ../trunk-jpl/test/Archives/Archive424.arch =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: ../trunk-jpl/test/NightlyRun/test426.py =================================================================== --- ../trunk-jpl/test/NightlyRun/test426.py (revision 22336) +++ ../trunk-jpl/test/NightlyRun/test426.py (revision 22337) @@ -22,7 +22,7 @@ md.transient.isgroundingline=True md.groundingline.migration='AggressiveMigration' md.transient.requested_outputs=['IceVolume','IceVolumeAboveFloatation','IceMass','IceVolumeAboveFloatationScaled','GroundedArea','FloatingArea','GroundedAreaScaled','FloatingAreaScaled'] -md.mesh.scale_factor=1*np.ones((md.mesh.numberofvertices)) +md.mesh.scale_factor=1.1*np.ones((md.mesh.numberofvertices)) md.extrude(3,1.) md.cluster=generic('name',gethostname(),'np',3)