Changeset 9080


Ignore:
Timestamp:
07/20/11 07:29:50 (14 years ago)
Author:
Mathieu Morlighem
Message:

Fixed NR with new spcthickness

Location:
issm/trunk/test
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/test/NightlyRun/test131.m

    r8304 r9080  
    44%Add boundary conditions on thickness on the border
    55pos=find(md.nodeonboundary);
    6 md.spcthickness(pos,1)=1;
    7 md.spcthickness(pos,2)=md.thickness(pos);
     6md.spcthickness(pos)=md.thickness(pos);
    87md=setelementstype(md,'macayeal','all');
    98md.cluster=none;
  • issm/trunk/test/NightlyRun/test132.m

    r8589 r9080  
    44%Add boundary conditions on thickness on the border
    55pos=find(md.nodeonboundary);
    6 md.spcthickness(pos,1)=1;
    7 md.spcthickness(pos,2)=md.thickness(pos);
     6md.spcthickness(pos)=md.thickness(pos);
    87md=setelementstype(md,'macayeal','all');
    98md.cluster=generic('name',oshostname(),'np',3);
  • issm/trunk/test/NightlyRun/test133.m

    r8304 r9080  
    55%Add boundary conditions on thickness on the border
    66pos=find(md.nodeonboundary);
    7 md.spcthickness(pos,1)=1;
    8 md.spcthickness(pos,2)=md.thickness(pos);
     7md.spcthickness(pos)=md.thickness(pos);
    98md=setelementstype(md,'macayeal','all');
    109md.cluster=none;
  • issm/trunk/test/NightlyRun/test134.m

    r8589 r9080  
    55%Add boundary conditions on thickness on the border
    66pos=find(md.nodeonboundary);
    7 md.spcthickness(pos,1)=1;
    8 md.spcthickness(pos,2)=md.thickness(pos);
     7md.spcthickness(pos)=md.thickness(pos);
    98md=setelementstype(md,'macayeal','all');
    109md.cluster=generic('name',oshostname(),'np',3);
  • issm/trunk/test/NightlyRun/test625.m

    r8304 r9080  
    88md=modelextract(md,md.elementonicesheet);
    99pos=find(md.nodeonboundary);
    10 md.spcthickness(pos,1)=1;
    11 md.spcthickness(:,2)=md.thickness;
     10md.spcthickness(pos)=md.thickness(pos);
    1211
    1312%control parameters
  • issm/trunk/test/NightlyRun/test626.m

    r8589 r9080  
    88md=modelextract(md,md.elementonicesheet);
    99pos=find(md.nodeonboundary);
    10 md.spcthickness(pos,1)=1;
    11 md.spcthickness(:,2)=md.thickness;
     10md.spcthickness(pos)=md.thickness(pos);
    1211
    1312%control parameters
  • issm/trunk/test/Par/79North.par

    r8999 r9080  
    22
    33%Geometry and observation
    4 load('./../Data/79North.data','-mat');
     4load('../Data/79North.data','-mat');
    55md.vx       =InterpFromMeshToMesh2d(index,x,y,vx,md.x,md.y);
    66md.vy       =InterpFromMeshToMesh2d(index,x,y,vy,md.x,md.y);
     
    4444md=SetMarineIceSheetBC(md);
    4545pos=find(md.nodeonboundary);
    46 md.spcthickness(pos,1)=1;
    47 md.spcthickness(pos,2)=md.thickness(pos);
     46md.spcthickness(pos)=md.thickness(pos);
    4847
    4948%Change name so that no test have the same name
Note: See TracChangeset for help on using the changeset viewer.