Changeset 5098


Ignore:
Timestamp:
08/09/10 14:58:07 (15 years ago)
Author:
Mathieu Morlighem
Message:

no more testXXX_nightly.m

Location:
issm/trunk/test/NightlyRun
Files:
206 deleted
207 edited

Legend:

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

    r5086 r5098  
    100100                %Execute test
    101101                eval(['test' num2str(id)]);
    102                 eval(['test' num2str(id) '_nightly']);
    103102
    104103                %UPDATE ARCHIVE?
  • issm/trunk/test/NightlyRun/test101.m

    r5097 r5098  
    66md=solve(md,'analysis_type',DiagnosticSolutionEnum);
    77
     8%Fields and tolerances to track changes
     9field_names     ={'Vx','Vy','Vel','Pressure'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.DiagnosticSolution.Vx),...
     13        PatchToVec(md.results.DiagnosticSolution.Vy),...
     14        PatchToVec(md.results.DiagnosticSolution.Vel),...
     15        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     16        };
  • issm/trunk/test/NightlyRun/test102.m

    r4963 r5098  
    55md.cluster=oshostname;
    66md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx','Vy','Vel','Pressure'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.DiagnosticSolution.Vx),...
     13        PatchToVec(md.results.DiagnosticSolution.Vy),...
     14        PatchToVec(md.results.DiagnosticSolution.Vel),...
     15        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     16        };
  • issm/trunk/test/NightlyRun/test103.m

    r4963 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test104.m

    r4963 r5098  
    66md.cluster=oshostname;
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test105.m

    r4963 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test106.m

    r4996 r5098  
    66md.cluster=oshostname;
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test107.m

    r4996 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-08,1e-08,1e-08,1e-08,1e-08};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test108.m

    r5012 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-08,1e-08,1e-08,1e-08,1e-08};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test109.m

    r4963 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',PrognosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Thickness'};
     10field_tolerances={1e-13};
     11field_values={...
     12        PatchToVec(md.results.PrognosticSolution.Thickness),...
     13        };
  • issm/trunk/test/NightlyRun/test110.m

    r4963 r5098  
    55md.cluster=oshostname;
    66md=solve(md,'analysis_type',PrognosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Thickness'};
     10field_tolerances={1e-13};
     11field_values={...
     12        PatchToVec(md.results.PrognosticSolution.Thickness),...
     13        };
  • issm/trunk/test/NightlyRun/test1101.m

    r5049 r5098  
    4242        plotmodel(md,'data',vx,'data',vy,'data',vz,'layer#all',md.numlayers)
    4343end
     44
     45%Fields and tolerances to track changes
     46field_names     ={ ...
     47        'Vx5km','Vy5km','Vz5km',...
     48        'Vx10km','Vy10km','Vz10km',...
     49        'Vx20km','Vy20km','Vz20km',...
     50        'Vx40km','Vy40km','Vz40km',...
     51        'Vx80km','Vy80km','Vz80km',...
     52        'Vx160km','Vy160km','Vz160km'
     53};
     54field_tolerances={...
     55        1e-13,1e-13,1e-13,...
     56        1e-13,1e-13,1e-13,...
     57        1e-13,1e-13,1e-13,...
     58        1e-13,1e-13,1e-13,...
     59        1e-13,1e-13,1e-13,...
     60        1e-13,1e-13,1e-13,...
     61};
     62field_values={};
     63for i=1:6,
     64        result=results{i};
     65        field_values={field_values{:},...
     66                PatchToVec(result.Vx),...
     67                PatchToVec(result.Vy),...
     68                PatchToVec(result.Vz),...
     69                };
     70end
  • issm/trunk/test/NightlyRun/test1102.m

    r5055 r5098  
    4343
    4444end
     45
     46%Fields and tolerances to track changes
     47field_names     ={...
     48        'Vx5km','Vy5km','Vz5km',...
     49        'Vx10km','Vy10km','Vz10km',...
     50        'Vx20km','Vy20km','Vz20km',...
     51        'Vx40km','Vy40km','Vz40km',...
     52        'Vx80km','Vy80km','Vz80km',...
     53        'Vx160km','Vy160km','Vz160km'
     54}
     55field_tolerances={...
     56        1e-13,1e-13,1e-13,...
     57        1e-13,1e-13,1e-13,...
     58        1e-13,1e-13,1e-13,...
     59        1e-13,1e-13,1e-13,...
     60        1e-13,1e-13,1e-13,...
     61        1e-13,1e-13,1e-13,...
     62};
     63field_values={};
     64for i=1:6,
     65        result=results{i};
     66        field_values={field_values{:},...
     67                PatchToVec(result.Vx),...
     68                PatchToVec(result.Vy),...
     69                PatchToVec(result.Vz),...
     70                };
     71end
  • issm/trunk/test/NightlyRun/test1103.m

    r5049 r5098  
    4242        plotmodel(md,'data',vx,'data',vy,'data',vz,'layer#all',md.numlayers)
    4343end
     44
     45%Fields and tolerances to track changes
     46field_names     ={...
     47        'Vx5km','Vy5km','Vz5km',...
     48        'Vx10km','Vy10km','Vz10km',...
     49        'Vx20km','Vy20km','Vz20km',...
     50        'Vx40km','Vy40km','Vz40km',...
     51        'Vx80km','Vy80km','Vz80km',...
     52        'Vx160km','Vy160km','Vz160km'
     53}
     54field_tolerances={...
     55        1e-13,1e-13,1e-13,...
     56        1e-13,1e-13,1e-13,...
     57        1e-13,1e-13,1e-13,...
     58        1e-13,1e-13,1e-13,...
     59        1e-13,1e-13,1e-13,...
     60        1e-13,1e-13,1e-13,...
     61};
     62field_values={};
     63for i=1:6,
     64        result=results{i};
     65        field_values={field_values{:},...
     66                PatchToVec(result.Vx),...
     67                PatchToVec(result.Vy),...
     68                PatchToVec(result.Vz),...
     69                };
     70end
  • issm/trunk/test/NightlyRun/test1104.m

    r5049 r5098  
    4242        plotmodel(md,'data',vx,'data',vy,'data',vz,'layer#all',md.numlayers)
    4343end
     44
     45%Fields and tolerances to track changes
     46field_names     ={...
     47        'Vx5km','Vy5km','Vz5km',...
     48        'Vx10km','Vy10km','Vz10km',...
     49        'Vx20km','Vy20km','Vz20km',...
     50        'Vx40km','Vy40km','Vz40km',...
     51        'Vx80km','Vy80km','Vz80km',...
     52        'Vx160km','Vy160km','Vz160km'
     53};
     54field_tolerances={...
     55        1e-13,1e-13,1e-13,...
     56        1e-13,1e-13,1e-13,...
     57        1e-13,1e-13,1e-13,...
     58        1e-13,1e-13,1e-13,...
     59        1e-13,1e-13,1e-13,...
     60        1e-13,1e-13,1e-13,...
     61};
     62field_values={};
     63for i=1:6,
     64        result=results{i};
     65        field_values={field_values{:},...
     66                PatchToVec(result.Vx),...
     67                PatchToVec(result.Vy),...
     68                PatchToVec(result.Vz),...
     69                };
     70end
  • issm/trunk/test/NightlyRun/test1105.m

    r5049 r5098  
    3939        plotmodel(md,'data',vx,'data',vy,'data',vz,'layer#all',md.numlayers)
    4040end
     41
     42%Fields and tolerances to track changes
     43field_names     ={...
     44        'Vx5km','Vy5km','Vz5km',...
     45        'Vx10km','Vy10km','Vz10km',...
     46        'Vx20km','Vy20km','Vz20km',...
     47        'Vx40km','Vy40km','Vz40km',...
     48        'Vx80km','Vy80km','Vz80km',...
     49        'Vx160km','Vy160km','Vz160km'
     50};
     51field_tolerances={...
     52        1e-13,1e-13,1e-13,...
     53        1e-13,1e-13,1e-13,...
     54        1e-13,1e-13,1e-13,...
     55        1e-13,1e-13,1e-13,...
     56        1e-13,1e-13,1e-13,...
     57        1e-13,1e-13,1e-13,...
     58};
     59field_values={};
     60for i=1:6,
     61        result=results{i};
     62        field_values={field_values{:},...
     63                PatchToVec(result.Vx),...
     64                PatchToVec(result.Vy),...
     65                PatchToVec(result.Vz),...
     66                };
     67end
  • issm/trunk/test/NightlyRun/test1106.m

    r5049 r5098  
    3939        plotmodel(md,'data',vx,'data',vy,'data',vz,'layer#all',md.numlayers)
    4040end
     41
     42%Fields and tolerances to track changes
     43field_names     ={...
     44        'Vx5km','Vy5km','Vz5km',...
     45        'Vx10km','Vy10km','Vz10km',...
     46        'Vx20km','Vy20km','Vz20km',...
     47        'Vx40km','Vy40km','Vz40km',...
     48        'Vx80km','Vy80km','Vz80km',...
     49        'Vx160km','Vy160km','Vz160km'
     50}
     51field_tolerances={...
     52        1e-13,1e-13,1e-13,...
     53        1e-13,1e-13,1e-13,...
     54        1e-13,1e-13,1e-13,...
     55        1e-13,1e-13,1e-13,...
     56        1e-13,1e-13,1e-13,...
     57        1e-13,1e-13,1e-13,...
     58};
     59field_values={};
     60for i=1:6,
     61        result=results{i};
     62        field_values={field_values{:},...
     63                PatchToVec(result.Vx),...
     64                PatchToVec(result.Vy),...
     65                PatchToVec(result.Vz),...
     66                };
     67end
  • issm/trunk/test/NightlyRun/test1107.m

    r5049 r5098  
    4242        plotmodel(md,'data',vx,'data',vy,'data',vz,'layer#all',md.numlayers)
    4343end
     44
     45%Fields and tolerances to track changes
     46field_names     ={...
     47        'Vx5km','Vy5km','Vz5km',...
     48        'Vx10km','Vy10km','Vz10km',...
     49        'Vx20km','Vy20km','Vz20km',...
     50        'Vx40km','Vy40km','Vz40km',...
     51        'Vx80km','Vy80km','Vz80km',...
     52        'Vx160km','Vy160km','Vz160km'
     53}
     54field_tolerances={...
     55        1e-13,1e-13,1e-13,...
     56        1e-13,1e-13,1e-13,...
     57        1e-13,1e-13,1e-13,...
     58        1e-13,1e-13,1e-13,...
     59        1e-13,1e-13,1e-13,...
     60        1e-13,1e-13,1e-13,...
     61};
     62field_values={};
     63for i=1:6,
     64        result=results{i};
     65        field_values={field_values{:},...
     66                PatchToVec(result.Vx),...
     67                PatchToVec(result.Vy),...
     68                PatchToVec(result.Vz),...
     69                };
     70end
  • issm/trunk/test/NightlyRun/test1108.m

    r5049 r5098  
    4242        plotmodel(md,'data',vx,'data',vy,'data',vz,'layer#all',md.numlayers)
    4343end
     44
     45%Fields and tolerances to track changes
     46field_names     ={...
     47        'Vx5km','Vy5km','Vz5km',...
     48        'Vx10km','Vy10km','Vz10km',...
     49        'Vx20km','Vy20km','Vz20km',...
     50        'Vx40km','Vy40km','Vz40km',...
     51        'Vx80km','Vy80km','Vz80km',...
     52        'Vx160km','Vy160km','Vz160km'
     53}
     54field_tolerances={...
     55        1e-13,1e-13,1e-13,...
     56        1e-13,1e-13,1e-13,...
     57        1e-13,1e-13,1e-13,...
     58        1e-13,1e-13,1e-13,...
     59        1e-13,1e-13,1e-13,...
     60        1e-13,1e-13,1e-13,...
     61};
     62field_values={};
     63for i=1:6,
     64        result=results{i};
     65        field_values={field_values{:},...
     66                PatchToVec(result.Vx),...
     67                PatchToVec(result.Vy),...
     68                PatchToVec(result.Vz),...
     69                };
     70end
  • issm/trunk/test/NightlyRun/test111.m

    r4999 r5098  
    77md.prognostic_DG=1;
    88md=solve(md,'analysis_type',PrognosticSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Thickness'};
     12field_tolerances={1e-13};
     13field_values={...
     14        PatchToVec(md.results.PrognosticSolution.Thickness),...
     15        };
  • issm/trunk/test/NightlyRun/test112.m

    r4999 r5098  
    77md.prognostic_DG=1;
    88md=solve(md,'analysis_type',PrognosticSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Thickness'};
     12field_tolerances={1e-13};
     13field_values={...
     14        PatchToVec(md.results.PrognosticSolution.Thickness),...
     15        };
  • issm/trunk/test/NightlyRun/test113.m

    r4963 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',PrognosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Thickness'};
     11field_tolerances={1e-13};
     12field_values={...
     13        PatchToVec(md.results.PrognosticSolution.Thickness),...
     14        };
  • issm/trunk/test/NightlyRun/test114.m

    r4963 r5098  
    66md.cluster=oshostname;
    77md=solve(md,'analysis_type',PrognosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Thickness'};
     11field_tolerances={1e-13};
     12field_values={...
     13        PatchToVec(md.results.PrognosticSolution.Thickness),...
     14        };
  • issm/trunk/test/NightlyRun/test115.m

    r4963 r5098  
    77md.cluster='none';
    88md=solve(md,'analysis_type',ThermalSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Temperature','MeltingRate'};
     12field_tolerances={1e-13,1e-13};
     13field_values={...
     14        PatchToVec(md.results.ThermalSolution.Temperature),...
     15        PatchToVec(md.results.ThermalSolution.MeltingRate),...
     16        };
  • issm/trunk/test/NightlyRun/test116.m

    r4963 r5098  
    77md.cluster=oshostname();
    88md=solve(md,'analysis_type',ThermalSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Temperature','MeltingRate'};
     12field_tolerances={1e-13,1e-13};
     13field_values={...
     14        PatchToVec(md.results.ThermalSolution.Temperature),...
     15        PatchToVec(md.results.ThermalSolution.MeltingRate),...
     16        };
  • issm/trunk/test/NightlyRun/test117.m

    r4963 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',ThermalSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Temperature','MeltingRate'};
     11field_tolerances={1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.ThermalSolution.Temperature),...
     14        PatchToVec(md.results.ThermalSolution.MeltingRate),...
     15        };
  • issm/trunk/test/NightlyRun/test118.m

    r4963 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',ThermalSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Temperature','MeltingRate'};
     11field_tolerances={1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.ThermalSolution.Temperature),...
     14        PatchToVec(md.results.ThermalSolution.MeltingRate),...
     15        };
  • issm/trunk/test/NightlyRun/test119.m

    r4963 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',Transient2DSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.Transient2DSolution(1).Vx),...
     13        PatchToVec(md.results.Transient2DSolution(1).Vy),...
     14        PatchToVec(md.results.Transient2DSolution(1).Vel),...
     15        PatchToVec(md.results.Transient2DSolution(1).Pressure),...
     16        PatchToVec(md.results.Transient2DSolution(1).Bed),...
     17        PatchToVec(md.results.Transient2DSolution(1).Surface),...
     18        PatchToVec(md.results.Transient2DSolution(1).Thickness),...
     19        PatchToVec(md.results.Transient2DSolution(2).Vx),...
     20        PatchToVec(md.results.Transient2DSolution(2).Vy),...
     21        PatchToVec(md.results.Transient2DSolution(2).Vel),...
     22        PatchToVec(md.results.Transient2DSolution(2).Pressure),...
     23        PatchToVec(md.results.Transient2DSolution(2).Bed),...
     24        PatchToVec(md.results.Transient2DSolution(2).Surface),...
     25        PatchToVec(md.results.Transient2DSolution(2).Thickness),...
     26        PatchToVec(md.results.Transient2DSolution(3).Vx),...
     27        PatchToVec(md.results.Transient2DSolution(3).Vy),...
     28        PatchToVec(md.results.Transient2DSolution(3).Vel),...
     29        PatchToVec(md.results.Transient2DSolution(3).Pressure),...
     30        PatchToVec(md.results.Transient2DSolution(3).Bed),...
     31        PatchToVec(md.results.Transient2DSolution(3).Surface),...
     32        PatchToVec(md.results.Transient2DSolution(3).Thickness),...
     33        };
  • issm/trunk/test/NightlyRun/test120.m

    r4963 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',Transient2DSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.Transient2DSolution(1).Vx),...
     13        PatchToVec(md.results.Transient2DSolution(1).Vy),...
     14        PatchToVec(md.results.Transient2DSolution(1).Vel),...
     15        PatchToVec(md.results.Transient2DSolution(1).Pressure),...
     16        PatchToVec(md.results.Transient2DSolution(1).Bed),...
     17        PatchToVec(md.results.Transient2DSolution(1).Surface),...
     18        PatchToVec(md.results.Transient2DSolution(1).Thickness),...
     19        PatchToVec(md.results.Transient2DSolution(2).Vx),...
     20        PatchToVec(md.results.Transient2DSolution(2).Vy),...
     21        PatchToVec(md.results.Transient2DSolution(2).Vel),...
     22        PatchToVec(md.results.Transient2DSolution(2).Pressure),...
     23        PatchToVec(md.results.Transient2DSolution(2).Bed),...
     24        PatchToVec(md.results.Transient2DSolution(2).Surface),...
     25        PatchToVec(md.results.Transient2DSolution(2).Thickness),...
     26        PatchToVec(md.results.Transient2DSolution(3).Vx),...
     27        PatchToVec(md.results.Transient2DSolution(3).Vy),...
     28        PatchToVec(md.results.Transient2DSolution(3).Vel),...
     29        PatchToVec(md.results.Transient2DSolution(3).Pressure),...
     30        PatchToVec(md.results.Transient2DSolution(3).Bed),...
     31        PatchToVec(md.results.Transient2DSolution(3).Surface),...
     32        PatchToVec(md.results.Transient2DSolution(3).Thickness),...
     33        };
  • issm/trunk/test/NightlyRun/test1202.m

    r5089 r5098  
    1616
    1717plotmodel(md,'data',vx,'data',vy,'contourlevels',{0,20,40,-20,-40},'contourlevels',{-100,-200,-300,-400,-500,-600},'contourcolor','k')
     18
     19%Fields and tolerances to track changes
     20field_names     ={'Vx','Vy'};
     21field_tolerances={1e-13,1e-13};
     22field_values={...
     23        vx, ...
     24        vy, ...
     25        };
  • issm/trunk/test/NightlyRun/test1203.m

    r5089 r5098  
    2020%plot results
    2121plotmodel(md,'data',vx,'data',vy,'contourlevels',{0,20,40,-20,-40,-60,60},'contourlevels',{-100,-200,-300,-400,-500,-600,-700,-800})
     22
     23%Fields and tolerances to track changes
     24field_names     ={'Vx','Vy'};
     25field_tolerances={1e-13,1e-13};
     26field_values={...
     27        vx, ...
     28        vy, ...
     29        };
  • issm/trunk/test/NightlyRun/test121.m

    r4963 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2', ...
     12                                           'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','MeltingRate3'};
     13field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-05,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-05,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-05};
     14field_values={...
     15        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     19        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     20        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     21        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     22        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     23        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     24        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     29        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     30        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     31        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     32        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     33        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     34        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     35        PatchToVec(md.results.Transient3DSolution(3).Vx),...
     36        PatchToVec(md.results.Transient3DSolution(3).Vy),...
     37        PatchToVec(md.results.Transient3DSolution(3).Vz),...
     38        PatchToVec(md.results.Transient3DSolution(3).Vel),...
     39        PatchToVec(md.results.Transient3DSolution(3).Pressure),...
     40        PatchToVec(md.results.Transient3DSolution(3).Bed),...
     41        PatchToVec(md.results.Transient3DSolution(3).Surface),...
     42        PatchToVec(md.results.Transient3DSolution(3).Thickness),...
     43        PatchToVec(md.results.Transient3DSolution(3).Temperature),...
     44        PatchToVec(md.results.Transient3DSolution(3).MeltingRate),...
     45        };
  • issm/trunk/test/NightlyRun/test122.m

    r4963 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2', ...
     12                                           'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','MeltingRate3'};
     13field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-05,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-05,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-05};
     14field_values={...
     15        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     19        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     20        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     21        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     22        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     23        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     24        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     29        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     30        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     31        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     32        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     33        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     34        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     35        PatchToVec(md.results.Transient3DSolution(3).Vx),...
     36        PatchToVec(md.results.Transient3DSolution(3).Vy),...
     37        PatchToVec(md.results.Transient3DSolution(3).Vz),...
     38        PatchToVec(md.results.Transient3DSolution(3).Vel),...
     39        PatchToVec(md.results.Transient3DSolution(3).Pressure),...
     40        PatchToVec(md.results.Transient3DSolution(3).Bed),...
     41        PatchToVec(md.results.Transient3DSolution(3).Surface),...
     42        PatchToVec(md.results.Transient3DSolution(3).Thickness),...
     43        PatchToVec(md.results.Transient3DSolution(3).Temperature),...
     44        PatchToVec(md.results.Transient3DSolution(3).MeltingRate),...
     45        };
  • issm/trunk/test/NightlyRun/test123.m

    r4963 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',SurfaceSlopeSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'SurfaceSlopeX','SurfaceSlopeY'};
     10field_tolerances={1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeX),...
     13        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeY),...
     14        };
  • issm/trunk/test/NightlyRun/test124.m

    r4963 r5098  
    55md.cluster=oshostname;
    66md=solve(md,'analysis_type',SurfaceSlopeSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'SurfaceSlopeX','SurfaceSlopeY'};
     10field_tolerances={1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeX),...
     13        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeY),...
     14        };
  • issm/trunk/test/NightlyRun/test125.m

    r4963 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',SurfaceSlopeSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'SurfaceSlopeX','SurfaceSlopeY'};
     11field_tolerances={1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeX),...
     14        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeY),...
     15        };
  • issm/trunk/test/NightlyRun/test126.m

    r4963 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',SurfaceSlopeSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'SurfaceSlopeX','SurfaceSlopeY'};
     11field_tolerances={1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeX),...
     14        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeY),...
     15        };
  • issm/trunk/test/NightlyRun/test127.m

    r4963 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',BedSlopeSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'BedSlopeX','BedSlopeY'};
     10field_tolerances={1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.BedSlopeSolution.BedSlopeX),...
     13        PatchToVec(md.results.BedSlopeSolution.BedSlopeY),...
     14        };
  • issm/trunk/test/NightlyRun/test128.m

    r4963 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',BedSlopeSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'BedSlopeX','BedSlopeY'};
     10field_tolerances={1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.BedSlopeSolution.BedSlopeX),...
     13        PatchToVec(md.results.BedSlopeSolution.BedSlopeY),...
     14        };
  • issm/trunk/test/NightlyRun/test129.m

    r4963 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',BedSlopeSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'BedSlopeX','BedSlopeY'};
     11field_tolerances={1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.BedSlopeSolution.BedSlopeX),...
     14        PatchToVec(md.results.BedSlopeSolution.BedSlopeY),...
     15        };
  • issm/trunk/test/NightlyRun/test130.m

    r4963 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',BedSlopeSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'BedSlopeX','BedSlopeY'};
     11field_tolerances={1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.BedSlopeSolution.BedSlopeX),...
     14        PatchToVec(md.results.BedSlopeSolution.BedSlopeY),...
     15        };
  • issm/trunk/test/NightlyRun/test1301.m

    r5089 r5098  
    3333relative(find(comp_melting==melting))=0;
    3434plotmodel(md,'data',comp_melting,'title','modeled melting','data',melting,'title','analytical melting','data',comp_melting-melting,'title','absolute error','data',relative,'title','relative error [%]','layer#all',1,'caxis#2',[1.02964 1.02966]*10^-4)
     35
     36%Fields and tolerances to track changes
     37field_names     ={'Melting'};
     38field_tolerances={1e-13};
     39field_values    ={comp_melting};
  • issm/trunk/test/NightlyRun/test1302.m

    r5046 r5098  
    3434relative(find(comp_temp==md.observed_temperature))=0;
    3535plotmodel(md,'data',comp_temp,'title','modeled temperature','data','observed_temperature','view',3,'title','analytical temperature','view',3,'data',comp_temp-md.observed_temperature,'title','absolute error','view',3,'data',relative,'title','relative error [%]','view',3)
     36
     37%Fields and tolerances to track changes
     38field_names     ={'AdvectionTemperature'};
     39field_tolerances={1e-13};
     40field_values    ={comp_temp};
  • issm/trunk/test/NightlyRun/test1303.m

    r5046 r5098  
    2929relative(find(comp_temp==md.observed_temperature))=0;
    3030plotmodel(md,'data',comp_temp,'title','modeled temperature','data','observed_temperature','view',3,'title','analytical temperature','view',3,'data',comp_temp-md.observed_temperature,'title','absolute error','view',3,'data',relative,'title','relative error [%]','view',3)
     31
     32%Fields and tolerances to track changes
     33field_names     ={'ConductionTemperature'};
     34field_tolerances={1e-13};
     35field_values    ={comp_temp};
  • issm/trunk/test/NightlyRun/test1304.m

    r5046 r5098  
    2929relative(find(comp_temp==md.observed_temperature))=0;
    3030plotmodel(md,'data',comp_temp,'title','modeled temperature','data','observed_temperature','view',3,'title','analytical temperature','view',3,'data',comp_temp-md.observed_temperature,'title','absolute error','view',3,'data',relative,'title','relative error [%]','view',3)
     31
     32%Fields and tolerances to track changes
     33field_names     ={'GeothermalFluxTemperature'};
     34field_tolerances={1e-13};
     35field_values    ={comp_temp};
  • issm/trunk/test/NightlyRun/test131.m

    r4963 r5098  
    99md.cluster='none';
    1010md=solve(md,'analysis_type',BalancedthicknessSolutionEnum);
     11
     12%Fields and tolerances to track changes
     13field_names     ={'Thickness'};
     14field_tolerances={1e-13};
     15field_values={...
     16        PatchToVec(md.results.BalancedthicknessSolution.Thickness),...
     17        };
  • issm/trunk/test/NightlyRun/test132.m

    r4963 r5098  
    99md.cluster=oshostname;
    1010md=solve(md,'analysis_type',BalancedthicknessSolutionEnum);
     11
     12%Fields and tolerances to track changes
     13field_names     ={'Thickness'};
     14field_tolerances={1e-13};
     15field_values={...
     16        PatchToVec(md.results.BalancedthicknessSolution.Thickness),...
     17        };
  • issm/trunk/test/NightlyRun/test133.m

    r4963 r5098  
    1010md.cluster='none';
    1111md=solve(md,'analysis_type',BalancedthicknessSolutionEnum);
     12
     13%Fields and tolerances to track changes
     14field_names     ={'Thickness'};
     15field_tolerances={1e-13};
     16field_values={...
     17        PatchToVec(md.results.BalancedthicknessSolution.Thickness),...
     18        };
  • issm/trunk/test/NightlyRun/test134.m

    r4963 r5098  
    1010md.cluster=oshostname;
    1111md=solve(md,'analysis_type',BalancedthicknessSolutionEnum);
     12
     13%Fields and tolerances to track changes
     14field_names     ={'Thickness'};
     15field_tolerances={1e-13};
     16field_values={...
     17        PatchToVec(md.results.BalancedthicknessSolution.Thickness),...
     18        };
  • issm/trunk/test/NightlyRun/test135.m

    r4964 r5098  
    88md.cluster='none';
    99md=solve(md,'analysis_type',BalancedthicknessSolutionEnum);
     10
     11%Fields and tolerances to track changes
     12field_names     ={'Thickness'};
     13field_tolerances={1e-13};
     14field_values={...
     15        PatchToVec(md.results.BalancedthicknessSolution.Thickness),...
     16        };
  • issm/trunk/test/NightlyRun/test136.m

    r4964 r5098  
    88md.cluster=oshostname();
    99md=solve(md,'analysis_type',BalancedthicknessSolutionEnum);
     10
     11%Fields and tolerances to track changes
     12field_names     ={'Thickness'};
     13field_tolerances={1e-13};
     14field_values={...
     15        PatchToVec(md.results.BalancedthicknessSolution.Thickness),...
     16        };
  • issm/trunk/test/NightlyRun/test137.m

    r5062 r5098  
    1515nbelements=md.numberofelements;
    1616elapsedtime=etime(clock,t0);
     17
     18%Fields and tolerances to track changes
     19field_names     ={'x1' 'y1' 'x2' 'y2' 'nbelements' 'elapsed time'};
     20field_tolerances={1e-13 1e-13 1e-13 1e-13 1e-13 0.5};
     21field_values={...
     22        x1, y1,...
     23        x2, y2,...
     24        nbelements,elapsedtime...
     25        };
  • issm/trunk/test/NightlyRun/test201.m

    r4961 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx','Vy','Vel','Pressure'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.DiagnosticSolution.Vx),...
     13        PatchToVec(md.results.DiagnosticSolution.Vy),...
     14        PatchToVec(md.results.DiagnosticSolution.Vel),...
     15        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     16        };
  • issm/trunk/test/NightlyRun/test202.m

    r4961 r5098  
    55md.cluster=oshostname;
    66md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx','Vy','Vel','Pressure'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.DiagnosticSolution.Vx),...
     13        PatchToVec(md.results.DiagnosticSolution.Vy),...
     14        PatchToVec(md.results.DiagnosticSolution.Vel),...
     15        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     16        };
  • issm/trunk/test/NightlyRun/test203.m

    r4961 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test204.m

    r4961 r5098  
    66md.cluster=oshostname;
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test205.m

    r4963 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test206.m

    r4961 r5098  
    66md.cluster=oshostname;
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test207.m

    r4961 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-08,1e-08,1e-08,1e-08,1e-08};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test208.m

    r4961 r5098  
    66md.cluster=oshostname;
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-08,1e-08,1e-07,1e-08,1e-08};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test209.m

    r4961 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-05,1e-05,1e-05,1e-05,1e-05};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test210.m

    r4961 r5098  
    66md.cluster=oshostname;
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-06,1e-06,1e-06,1e-06,1e-06};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test211.m

    r4961 r5098  
    77md.cluster='none';
    88md=solve(md,'analysis_type',ThermalSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Temperature','MeltingRate'};
     12field_tolerances={1e-13,1e-13};
     13field_values={...
     14        PatchToVec(md.results.ThermalSolution.Temperature),...
     15        PatchToVec(md.results.ThermalSolution.MeltingRate),...
     16        };
  • issm/trunk/test/NightlyRun/test212.m

    r4961 r5098  
    77md.cluster=oshostname;
    88md=solve(md,'analysis_type',ThermalSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Temperature','MeltingRate'};
     12field_tolerances={1e-13,1e-13};
     13field_values={...
     14        PatchToVec(md.results.ThermalSolution.Temperature),...
     15        PatchToVec(md.results.ThermalSolution.MeltingRate),...
     16        };
  • issm/trunk/test/NightlyRun/test213.m

    r4961 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',ThermalSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Temperature1','MeltingRate1','Temperature2','MeltingRate2','Temperature3','MeltingRate3'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.ThermalSolution(1).Temperature),...
     14        PatchToVec(md.results.ThermalSolution(1).MeltingRate),...
     15        PatchToVec(md.results.ThermalSolution(2).Temperature),...
     16        PatchToVec(md.results.ThermalSolution(2).MeltingRate),...
     17        PatchToVec(md.results.ThermalSolution(3).Temperature),...
     18        PatchToVec(md.results.ThermalSolution(3).MeltingRate),...
     19        };
  • issm/trunk/test/NightlyRun/test214.m

    r4961 r5098  
    66md.cluster=oshostname;
    77md=solve(md,'analysis_type',ThermalSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Temperature1','MeltingRate1','Temperature2','MeltingRate2','Temperature3','MeltingRate3'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.ThermalSolution(1).Temperature),...
     14        PatchToVec(md.results.ThermalSolution(1).MeltingRate),...
     15        PatchToVec(md.results.ThermalSolution(2).Temperature),...
     16        PatchToVec(md.results.ThermalSolution(2).MeltingRate),...
     17        PatchToVec(md.results.ThermalSolution(3).Temperature),...
     18        PatchToVec(md.results.ThermalSolution(3).MeltingRate),...
     19        };
  • issm/trunk/test/NightlyRun/test215.m

    r4961 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',Transient2DSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.Transient2DSolution(1).Vx),...
     13        PatchToVec(md.results.Transient2DSolution(1).Vy),...
     14        PatchToVec(md.results.Transient2DSolution(1).Vel),...
     15        PatchToVec(md.results.Transient2DSolution(1).Pressure),...
     16        PatchToVec(md.results.Transient2DSolution(1).Bed),...
     17        PatchToVec(md.results.Transient2DSolution(1).Surface),...
     18        PatchToVec(md.results.Transient2DSolution(1).Thickness),...
     19        PatchToVec(md.results.Transient2DSolution(2).Vx),...
     20        PatchToVec(md.results.Transient2DSolution(2).Vy),...
     21        PatchToVec(md.results.Transient2DSolution(2).Vel),...
     22        PatchToVec(md.results.Transient2DSolution(2).Pressure),...
     23        PatchToVec(md.results.Transient2DSolution(2).Bed),...
     24        PatchToVec(md.results.Transient2DSolution(2).Surface),...
     25        PatchToVec(md.results.Transient2DSolution(2).Thickness),...
     26        PatchToVec(md.results.Transient2DSolution(3).Vx),...
     27        PatchToVec(md.results.Transient2DSolution(3).Vy),...
     28        PatchToVec(md.results.Transient2DSolution(3).Vel),...
     29        PatchToVec(md.results.Transient2DSolution(3).Pressure),...
     30        PatchToVec(md.results.Transient2DSolution(3).Bed),...
     31        PatchToVec(md.results.Transient2DSolution(3).Surface),...
     32        PatchToVec(md.results.Transient2DSolution(3).Thickness),...
     33        };
  • issm/trunk/test/NightlyRun/test216.m

    r4961 r5098  
    55md.cluster=oshostname;
    66md=solve(md,'analysis_type',Transient2DSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.Transient2DSolution(1).Vx),...
     13        PatchToVec(md.results.Transient2DSolution(1).Vy),...
     14        PatchToVec(md.results.Transient2DSolution(1).Vel),...
     15        PatchToVec(md.results.Transient2DSolution(1).Pressure),...
     16        PatchToVec(md.results.Transient2DSolution(1).Bed),...
     17        PatchToVec(md.results.Transient2DSolution(1).Surface),...
     18        PatchToVec(md.results.Transient2DSolution(1).Thickness),...
     19        PatchToVec(md.results.Transient2DSolution(2).Vx),...
     20        PatchToVec(md.results.Transient2DSolution(2).Vy),...
     21        PatchToVec(md.results.Transient2DSolution(2).Vel),...
     22        PatchToVec(md.results.Transient2DSolution(2).Pressure),...
     23        PatchToVec(md.results.Transient2DSolution(2).Bed),...
     24        PatchToVec(md.results.Transient2DSolution(2).Surface),...
     25        PatchToVec(md.results.Transient2DSolution(2).Thickness),...
     26        PatchToVec(md.results.Transient2DSolution(3).Vx),...
     27        PatchToVec(md.results.Transient2DSolution(3).Vy),...
     28        PatchToVec(md.results.Transient2DSolution(3).Vel),...
     29        PatchToVec(md.results.Transient2DSolution(3).Pressure),...
     30        PatchToVec(md.results.Transient2DSolution(3).Bed),...
     31        PatchToVec(md.results.Transient2DSolution(3).Surface),...
     32        PatchToVec(md.results.Transient2DSolution(3).Thickness),...
     33        };
  • issm/trunk/test/NightlyRun/test217.m

    r4961 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2', ...
     12                                           'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','MeltingRate3'};
     13field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     14field_values={...
     15        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     19        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     20        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     21        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     22        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     23        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     24        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     29        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     30        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     31        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     32        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     33        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     34        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     35        PatchToVec(md.results.Transient3DSolution(3).Vx),...
     36        PatchToVec(md.results.Transient3DSolution(3).Vy),...
     37        PatchToVec(md.results.Transient3DSolution(3).Vz),...
     38        PatchToVec(md.results.Transient3DSolution(3).Vel),...
     39        PatchToVec(md.results.Transient3DSolution(3).Pressure),...
     40        PatchToVec(md.results.Transient3DSolution(3).Bed),...
     41        PatchToVec(md.results.Transient3DSolution(3).Surface),...
     42        PatchToVec(md.results.Transient3DSolution(3).Thickness),...
     43        PatchToVec(md.results.Transient3DSolution(3).Temperature),...
     44        PatchToVec(md.results.Transient3DSolution(3).MeltingRate),...
     45        };
  • issm/trunk/test/NightlyRun/test218.m

    r4961 r5098  
    66md.cluster=oshostname;
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2', ...
     12                                           'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','MeltingRate3'};
     13field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     14field_values={...
     15        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     19        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     20        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     21        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     22        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     23        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     24        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     29        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     30        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     31        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     32        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     33        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     34        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     35        PatchToVec(md.results.Transient3DSolution(3).Vx),...
     36        PatchToVec(md.results.Transient3DSolution(3).Vy),...
     37        PatchToVec(md.results.Transient3DSolution(3).Vz),...
     38        PatchToVec(md.results.Transient3DSolution(3).Vel),...
     39        PatchToVec(md.results.Transient3DSolution(3).Pressure),...
     40        PatchToVec(md.results.Transient3DSolution(3).Bed),...
     41        PatchToVec(md.results.Transient3DSolution(3).Surface),...
     42        PatchToVec(md.results.Transient3DSolution(3).Thickness),...
     43        PatchToVec(md.results.Transient3DSolution(3).Temperature),...
     44        PatchToVec(md.results.Transient3DSolution(3).MeltingRate),...
     45        };
  • issm/trunk/test/NightlyRun/test219.m

    r4961 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2', ...
     12                                           'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','MeltingRate3'};
     13field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-06};
     14field_values={...
     15        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     19        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     20        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     21        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     22        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     23        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     24        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     29        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     30        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     31        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     32        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     33        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     34        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     35        PatchToVec(md.results.Transient3DSolution(3).Vx),...
     36        PatchToVec(md.results.Transient3DSolution(3).Vy),...
     37        PatchToVec(md.results.Transient3DSolution(3).Vz),...
     38        PatchToVec(md.results.Transient3DSolution(3).Vel),...
     39        PatchToVec(md.results.Transient3DSolution(3).Pressure),...
     40        PatchToVec(md.results.Transient3DSolution(3).Bed),...
     41        PatchToVec(md.results.Transient3DSolution(3).Surface),...
     42        PatchToVec(md.results.Transient3DSolution(3).Thickness),...
     43        PatchToVec(md.results.Transient3DSolution(3).Temperature),...
     44        PatchToVec(md.results.Transient3DSolution(3).MeltingRate),...
     45        };
  • issm/trunk/test/NightlyRun/test220.m

    r4961 r5098  
    66md.cluster=oshostname;
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2', ...
     12                                           'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','MeltingRate3'};
     13field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-06};
     14field_values={...
     15        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     19        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     20        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     21        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     22        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     23        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     24        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     29        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     30        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     31        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     32        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     33        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     34        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     35        PatchToVec(md.results.Transient3DSolution(3).Vx),...
     36        PatchToVec(md.results.Transient3DSolution(3).Vy),...
     37        PatchToVec(md.results.Transient3DSolution(3).Vz),...
     38        PatchToVec(md.results.Transient3DSolution(3).Vel),...
     39        PatchToVec(md.results.Transient3DSolution(3).Pressure),...
     40        PatchToVec(md.results.Transient3DSolution(3).Bed),...
     41        PatchToVec(md.results.Transient3DSolution(3).Surface),...
     42        PatchToVec(md.results.Transient3DSolution(3).Thickness),...
     43        PatchToVec(md.results.Transient3DSolution(3).Temperature),...
     44        PatchToVec(md.results.Transient3DSolution(3).MeltingRate),...
     45        };
  • issm/trunk/test/NightlyRun/test221.m

    r4961 r5098  
    77md.cluster='none';
    88md=solve(md,'analysis_type',Transient3DSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     12                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2', ...
     13                                           'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','MeltingRate3'};
     14field_tolerances={1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08};
     15field_values={...
     16        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     19        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     20        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     21        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     22        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     23        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     24        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     25        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     29        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     30        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     31        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     32        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     33        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     34        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     35        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     36        PatchToVec(md.results.Transient3DSolution(3).Vx),...
     37        PatchToVec(md.results.Transient3DSolution(3).Vy),...
     38        PatchToVec(md.results.Transient3DSolution(3).Vz),...
     39        PatchToVec(md.results.Transient3DSolution(3).Vel),...
     40        PatchToVec(md.results.Transient3DSolution(3).Pressure),...
     41        PatchToVec(md.results.Transient3DSolution(3).Bed),...
     42        PatchToVec(md.results.Transient3DSolution(3).Surface),...
     43        PatchToVec(md.results.Transient3DSolution(3).Thickness),...
     44        PatchToVec(md.results.Transient3DSolution(3).Temperature),...
     45        PatchToVec(md.results.Transient3DSolution(3).MeltingRate),...
     46        };
  • issm/trunk/test/NightlyRun/test222.m

    r4961 r5098  
    77md.cluster=oshostname;
    88md=solve(md,'analysis_type',Transient3DSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     12                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2', ...
     13                                           'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','MeltingRate3'};
     14field_tolerances={1e-08,1e-08,1e-07,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-07,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-06};
     15field_values={...
     16        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     19        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     20        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     21        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     22        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     23        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     24        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     25        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     29        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     30        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     31        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     32        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     33        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     34        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     35        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     36        PatchToVec(md.results.Transient3DSolution(3).Vx),...
     37        PatchToVec(md.results.Transient3DSolution(3).Vy),...
     38        PatchToVec(md.results.Transient3DSolution(3).Vz),...
     39        PatchToVec(md.results.Transient3DSolution(3).Vel),...
     40        PatchToVec(md.results.Transient3DSolution(3).Pressure),...
     41        PatchToVec(md.results.Transient3DSolution(3).Bed),...
     42        PatchToVec(md.results.Transient3DSolution(3).Surface),...
     43        PatchToVec(md.results.Transient3DSolution(3).Thickness),...
     44        PatchToVec(md.results.Transient3DSolution(3).Temperature),...
     45        PatchToVec(md.results.Transient3DSolution(3).MeltingRate),...
     46        };
  • issm/trunk/test/NightlyRun/test223.m

    r5021 r5098  
    1919md.cluster='none';
    2020md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     21
     22%Fields and tolerances to track changes
     23field_names     ={'Gradient' 'Misfits' 'RheologyB2d' 'Pressure' 'Vel' 'Vx' 'Vy'};
     24field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     25field_values={...
     26        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     27        md.results.DiagnosticSolution.J,...
     28        PatchToVec(md.results.DiagnosticSolution.RheologyB2d),...
     29        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     30        PatchToVec(md.results.DiagnosticSolution.Vel),...
     31        PatchToVec(md.results.DiagnosticSolution.Vx),...
     32        PatchToVec(md.results.DiagnosticSolution.Vy)
     33};
  • issm/trunk/test/NightlyRun/test224.m

    r5026 r5098  
    1919md.cluster=oshostname();
    2020md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     21
     22%Fields and tolerances to track changes
     23field_names     ={'Gradient' 'Misfits' 'RheologyB2d' 'Pressure' 'Vel' 'Vx' 'Vy'};
     24field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     25field_values={...
     26        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     27        md.results.DiagnosticSolution.J,...
     28        PatchToVec(md.results.DiagnosticSolution.RheologyB2d),...
     29        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     30        PatchToVec(md.results.DiagnosticSolution.Vel),...
     31        PatchToVec(md.results.DiagnosticSolution.Vx),...
     32        PatchToVec(md.results.DiagnosticSolution.Vy)
     33};
  • issm/trunk/test/NightlyRun/test225.m

    r5026 r5098  
    2020md.cluster='none';
    2121md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     22
     23%Fields and tolerances to track changes
     24field_names     ={'Gradient' 'Misfits' 'RheologyB2d' 'Pressure' 'Vel' 'Vx' 'Vy'};
     25field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     26field_values={...
     27        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     28        md.results.DiagnosticSolution.J,...
     29        PatchToVec(md.results.DiagnosticSolution.RheologyB),...
     30        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     31        PatchToVec(md.results.DiagnosticSolution.Vel),...
     32        PatchToVec(md.results.DiagnosticSolution.Vx),...
     33        PatchToVec(md.results.DiagnosticSolution.Vy)
     34};
  • issm/trunk/test/NightlyRun/test226.m

    r5026 r5098  
    2020md.cluster=oshostname();
    2121md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     22
     23%Fields and tolerances to track changes
     24field_names     ={'Gradient' 'Misfits' 'RheologyB2d' 'Pressure' 'Vel' 'Vx' 'Vy'};
     25field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     26field_values={...
     27        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     28        md.results.DiagnosticSolution.J,...
     29        PatchToVec(md.results.DiagnosticSolution.RheologyB),...
     30        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     31        PatchToVec(md.results.DiagnosticSolution.Vel),...
     32        PatchToVec(md.results.DiagnosticSolution.Vx),...
     33        PatchToVec(md.results.DiagnosticSolution.Vy)
     34};
  • issm/trunk/test/NightlyRun/test227.m

    r5026 r5098  
    2020md.cluster='none';
    2121md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     22
     23%Fields and tolerances to track changes
     24field_names     ={'Gradient' 'Misfits' 'RheologyB2d' 'Pressure' 'Vel' 'Vx' 'Vy'};
     25field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09};
     26field_values={...
     27        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     28        md.results.DiagnosticSolution.J,...
     29        PatchToVec(md.results.DiagnosticSolution.RheologyB),...
     30        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     31        PatchToVec(md.results.DiagnosticSolution.Vel),...
     32        PatchToVec(md.results.DiagnosticSolution.Vx),...
     33        PatchToVec(md.results.DiagnosticSolution.Vy)
     34};
  • issm/trunk/test/NightlyRun/test228.m

    r5026 r5098  
    2020md.cluster=oshostname();
    2121md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     22
     23%Fields and tolerances to track changes
     24field_names     ={'Gradient' 'Misfits' 'RheologyB2d' 'Pressure' 'Vel' 'Vx' 'Vy'};
     25field_tolerances={1e-07,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08};
     26field_values={...
     27        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     28        md.results.DiagnosticSolution.J,...
     29        PatchToVec(md.results.DiagnosticSolution.RheologyB),...
     30        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     31        PatchToVec(md.results.DiagnosticSolution.Vel),...
     32        PatchToVec(md.results.DiagnosticSolution.Vx),...
     33        PatchToVec(md.results.DiagnosticSolution.Vy)
     34};
  • issm/trunk/test/NightlyRun/test229.m

    r5026 r5098  
    2020md.cluster='none';
    2121md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     22
     23%Fields and tolerances to track changes
     24field_names     ={'Gradient' 'Misfits' 'RheologyB2d' 'Pressure' 'Vel' 'Vx' 'Vy'};
     25field_tolerances={1e-08,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09};
     26field_values={...
     27        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     28        md.results.DiagnosticSolution.J,...
     29        PatchToVec(md.results.DiagnosticSolution.RheologyB),...
     30        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     31        PatchToVec(md.results.DiagnosticSolution.Vel),...
     32        PatchToVec(md.results.DiagnosticSolution.Vx),...
     33        PatchToVec(md.results.DiagnosticSolution.Vy)
     34};
  • issm/trunk/test/NightlyRun/test230.m

    r5026 r5098  
    2020md.cluster=oshostname();
    2121md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     22
     23%Fields and tolerances to track changes
     24field_names     ={'Gradient' 'Misfits' 'RheologyB2d' 'Pressure' 'Vel' 'Vx' 'Vy'};
     25field_tolerances={1e-08,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09};
     26field_values={...
     27        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     28        md.results.DiagnosticSolution.J,...
     29        PatchToVec(md.results.DiagnosticSolution.RheologyB),...
     30        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     31        PatchToVec(md.results.DiagnosticSolution.Vel),...
     32        PatchToVec(md.results.DiagnosticSolution.Vx),...
     33        PatchToVec(md.results.DiagnosticSolution.Vy)
     34};
  • issm/trunk/test/NightlyRun/test231.m

    r5025 r5098  
    99error('rifts not working for now')
    1010md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     11
     12%Fields and tolerances to track changes
     13field_names     ={'Vx','Vy','Vel','Pressure'};
     14field_tolerances={1e-13,1e-13,1e-13,1e-13};
     15field_values={...
     16        PatchToVec(md.results.DiagnosticSolution.Vx),...
     17        PatchToVec(md.results.DiagnosticSolution.Vy),...
     18        PatchToVec(md.results.DiagnosticSolution.Vel),...
     19        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     20        };
  • issm/trunk/test/NightlyRun/test232.m

    r5025 r5098  
    99error('rifts not working for now')
    1010md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     11
     12%Fields and tolerances to track changes
     13field_names     ={'Vx','Vy','Vel','Pressure'};
     14field_tolerances={1e-13,1e-13,1e-13,1e-13};
     15field_values={...
     16        PatchToVec(md.results.DiagnosticSolution.Vx),...
     17        PatchToVec(md.results.DiagnosticSolution.Vy),...
     18        PatchToVec(md.results.DiagnosticSolution.Vel),...
     19        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     20        };
  • issm/trunk/test/NightlyRun/test301.m

    r4975 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx','Vy','Vel','Pressure'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.DiagnosticSolution.Vx),...
     13        PatchToVec(md.results.DiagnosticSolution.Vy),...
     14        PatchToVec(md.results.DiagnosticSolution.Vel),...
     15        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     16        };
  • issm/trunk/test/NightlyRun/test302.m

    r4975 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx','Vy','Vel','Pressure'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.DiagnosticSolution.Vx),...
     13        PatchToVec(md.results.DiagnosticSolution.Vy),...
     14        PatchToVec(md.results.DiagnosticSolution.Vel),...
     15        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     16        };
  • issm/trunk/test/NightlyRun/test303.m

    r4975 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx','Vy','Vel','Pressure'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.DiagnosticSolution.Vx),...
     13        PatchToVec(md.results.DiagnosticSolution.Vy),...
     14        PatchToVec(md.results.DiagnosticSolution.Vel),...
     15        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     16        };
  • issm/trunk/test/NightlyRun/test304.m

    r4975 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx','Vy','Vel','Pressure'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.DiagnosticSolution.Vx),...
     13        PatchToVec(md.results.DiagnosticSolution.Vy),...
     14        PatchToVec(md.results.DiagnosticSolution.Vel),...
     15        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     16        };
  • issm/trunk/test/NightlyRun/test305.m

    r4975 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx','Vy','Vel','Pressure'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.DiagnosticSolution.Vx),...
     13        PatchToVec(md.results.DiagnosticSolution.Vy),...
     14        PatchToVec(md.results.DiagnosticSolution.Vel),...
     15        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     16        };
  • issm/trunk/test/NightlyRun/test306.m

    r4975 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx','Vy','Vel','Pressure'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.DiagnosticSolution.Vx),...
     13        PatchToVec(md.results.DiagnosticSolution.Vy),...
     14        PatchToVec(md.results.DiagnosticSolution.Vel),...
     15        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     16        };
  • issm/trunk/test/NightlyRun/test307.m

    r4975 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test308.m

    r4975 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test309.m

    r4975 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test310.m

    r4975 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test311.m

    r4975 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test312.m

    r4975 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test313.m

    r4975 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test314.m

    r4975 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-09,1e-10,1e-10,1e-10,1e-10};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test315.m

    r4975 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test316.m

    r4975 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test317.m

    r4975 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',PrognosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Thickness'};
     10field_tolerances={1e-13};
     11field_values={...
     12        PatchToVec(md.results.PrognosticSolution.Thickness),...
     13        };
  • issm/trunk/test/NightlyRun/test318.m

    r4975 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',PrognosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Thickness'};
     10field_tolerances={1e-13};
     11field_values={...
     12        PatchToVec(md.results.PrognosticSolution.Thickness),...
     13        };
  • issm/trunk/test/NightlyRun/test319.m

    r4975 r5098  
    77md.cluster='none';
    88md=solve(md,'analysis_type',PrognosticSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Thickness'};
     12field_tolerances={1e-13};
     13field_values={...
     14        PatchToVec(md.results.PrognosticSolution.Thickness),...
     15        };
  • issm/trunk/test/NightlyRun/test320.m

    r4975 r5098  
    77md.cluster=oshostname();
    88md=solve(md,'analysis_type',PrognosticSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Thickness'};
     12field_tolerances={1e-13};
     13field_values={...
     14        PatchToVec(md.results.PrognosticSolution.Thickness),...
     15        };
  • issm/trunk/test/NightlyRun/test321.m

    r4975 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',PrognosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Thickness'};
     11field_tolerances={1e-13};
     12field_values={...
     13        PatchToVec(md.results.PrognosticSolution.Thickness),...
     14        };
  • issm/trunk/test/NightlyRun/test322.m

    r4975 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',PrognosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Thickness'};
     11field_tolerances={1e-13};
     12field_values={...
     13        PatchToVec(md.results.PrognosticSolution.Thickness),...
     14        };
  • issm/trunk/test/NightlyRun/test323.m

    r4975 r5098  
    77md.cluster='none';
    88md=solve(md,'analysis_type',ThermalSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Temperature','MeltingRate'};
     12field_tolerances={1e-13,1e-13};
     13field_values={...
     14        PatchToVec(md.results.ThermalSolution.Temperature),...
     15        PatchToVec(md.results.ThermalSolution.MeltingRate),...
     16        };
  • issm/trunk/test/NightlyRun/test324.m

    r4975 r5098  
    77md.cluster=oshostname();
    88md=solve(md,'analysis_type',ThermalSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Temperature','MeltingRate'};
     12field_tolerances={1e-13,1e-13};
     13field_values={...
     14        PatchToVec(md.results.ThermalSolution.Temperature),...
     15        PatchToVec(md.results.ThermalSolution.MeltingRate),...
     16        };
  • issm/trunk/test/NightlyRun/test325.m

    r4975 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',ThermalSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Temperature','MeltingRate'};
     11field_tolerances={1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.ThermalSolution.Temperature),...
     14        PatchToVec(md.results.ThermalSolution.MeltingRate),...
     15        };
  • issm/trunk/test/NightlyRun/test326.m

    r4975 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',ThermalSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Temperature','MeltingRate'};
     11field_tolerances={1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.ThermalSolution.Temperature),...
     14        PatchToVec(md.results.ThermalSolution.MeltingRate),...
     15        };
  • issm/trunk/test/NightlyRun/test327.m

    r4975 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',Transient2DSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.Transient2DSolution(1).Vx),...
     13        PatchToVec(md.results.Transient2DSolution(1).Vy),...
     14        PatchToVec(md.results.Transient2DSolution(1).Vel),...
     15        PatchToVec(md.results.Transient2DSolution(1).Pressure),...
     16        PatchToVec(md.results.Transient2DSolution(1).Bed),...
     17        PatchToVec(md.results.Transient2DSolution(1).Surface),...
     18        PatchToVec(md.results.Transient2DSolution(1).Thickness),...
     19        PatchToVec(md.results.Transient2DSolution(2).Vx),...
     20        PatchToVec(md.results.Transient2DSolution(2).Vy),...
     21        PatchToVec(md.results.Transient2DSolution(2).Vel),...
     22        PatchToVec(md.results.Transient2DSolution(2).Pressure),...
     23        PatchToVec(md.results.Transient2DSolution(2).Bed),...
     24        PatchToVec(md.results.Transient2DSolution(2).Surface),...
     25        PatchToVec(md.results.Transient2DSolution(2).Thickness),...
     26        PatchToVec(md.results.Transient2DSolution(3).Vx),...
     27        PatchToVec(md.results.Transient2DSolution(3).Vy),...
     28        PatchToVec(md.results.Transient2DSolution(3).Vel),...
     29        PatchToVec(md.results.Transient2DSolution(3).Pressure),...
     30        PatchToVec(md.results.Transient2DSolution(3).Bed),...
     31        PatchToVec(md.results.Transient2DSolution(3).Surface),...
     32        PatchToVec(md.results.Transient2DSolution(3).Thickness),...
     33        };
  • issm/trunk/test/NightlyRun/test328.m

    r4975 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',Transient2DSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-10,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-10,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.Transient2DSolution(1).Vx),...
     13        PatchToVec(md.results.Transient2DSolution(1).Vy),...
     14        PatchToVec(md.results.Transient2DSolution(1).Vel),...
     15        PatchToVec(md.results.Transient2DSolution(1).Pressure),...
     16        PatchToVec(md.results.Transient2DSolution(1).Bed),...
     17        PatchToVec(md.results.Transient2DSolution(1).Surface),...
     18        PatchToVec(md.results.Transient2DSolution(1).Thickness),...
     19        PatchToVec(md.results.Transient2DSolution(2).Vx),...
     20        PatchToVec(md.results.Transient2DSolution(2).Vy),...
     21        PatchToVec(md.results.Transient2DSolution(2).Vel),...
     22        PatchToVec(md.results.Transient2DSolution(2).Pressure),...
     23        PatchToVec(md.results.Transient2DSolution(2).Bed),...
     24        PatchToVec(md.results.Transient2DSolution(2).Surface),...
     25        PatchToVec(md.results.Transient2DSolution(2).Thickness),...
     26        PatchToVec(md.results.Transient2DSolution(3).Vx),...
     27        PatchToVec(md.results.Transient2DSolution(3).Vy),...
     28        PatchToVec(md.results.Transient2DSolution(3).Vel),...
     29        PatchToVec(md.results.Transient2DSolution(3).Pressure),...
     30        PatchToVec(md.results.Transient2DSolution(3).Bed),...
     31        PatchToVec(md.results.Transient2DSolution(3).Surface),...
     32        PatchToVec(md.results.Transient2DSolution(3).Thickness),...
     33        };
  • issm/trunk/test/NightlyRun/test329.m

    r4989 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2', ...
     12                                           'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','MeltingRate3'};
     13field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     14field_values={...
     15        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     19        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     20        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     21        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     22        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     23        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     24        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     29        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     30        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     31        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     32        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     33        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     34        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     35        PatchToVec(md.results.Transient3DSolution(3).Vx),...
     36        PatchToVec(md.results.Transient3DSolution(3).Vy),...
     37        PatchToVec(md.results.Transient3DSolution(3).Vz),...
     38        PatchToVec(md.results.Transient3DSolution(3).Vel),...
     39        PatchToVec(md.results.Transient3DSolution(3).Pressure),...
     40        PatchToVec(md.results.Transient3DSolution(3).Bed),...
     41        PatchToVec(md.results.Transient3DSolution(3).Surface),...
     42        PatchToVec(md.results.Transient3DSolution(3).Thickness),...
     43        PatchToVec(md.results.Transient3DSolution(3).Temperature),...
     44        PatchToVec(md.results.Transient3DSolution(3).MeltingRate),...
     45        };
  • issm/trunk/test/NightlyRun/test330.m

    r4989 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2', ...
     12                                           'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','MeltingRate3'};
     13field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-11,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     14field_values={...
     15        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     19        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     20        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     21        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     22        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     23        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     24        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     29        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     30        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     31        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     32        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     33        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     34        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     35        PatchToVec(md.results.Transient3DSolution(3).Vx),...
     36        PatchToVec(md.results.Transient3DSolution(3).Vy),...
     37        PatchToVec(md.results.Transient3DSolution(3).Vz),...
     38        PatchToVec(md.results.Transient3DSolution(3).Vel),...
     39        PatchToVec(md.results.Transient3DSolution(3).Pressure),...
     40        PatchToVec(md.results.Transient3DSolution(3).Bed),...
     41        PatchToVec(md.results.Transient3DSolution(3).Surface),...
     42        PatchToVec(md.results.Transient3DSolution(3).Thickness),...
     43        PatchToVec(md.results.Transient3DSolution(3).Temperature),...
     44        PatchToVec(md.results.Transient3DSolution(3).MeltingRate),...
     45        };
  • issm/trunk/test/NightlyRun/test331.m

    r4975 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',Transient2DSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.Transient2DSolution(1).Vx),...
     13        PatchToVec(md.results.Transient2DSolution(1).Vy),...
     14        PatchToVec(md.results.Transient2DSolution(1).Vel),...
     15        PatchToVec(md.results.Transient2DSolution(1).Pressure),...
     16        PatchToVec(md.results.Transient2DSolution(1).Bed),...
     17        PatchToVec(md.results.Transient2DSolution(1).Surface),...
     18        PatchToVec(md.results.Transient2DSolution(1).Thickness),...
     19        PatchToVec(md.results.Transient2DSolution(2).Vx),...
     20        PatchToVec(md.results.Transient2DSolution(2).Vy),...
     21        PatchToVec(md.results.Transient2DSolution(2).Vel),...
     22        PatchToVec(md.results.Transient2DSolution(2).Pressure),...
     23        PatchToVec(md.results.Transient2DSolution(2).Bed),...
     24        PatchToVec(md.results.Transient2DSolution(2).Surface),...
     25        PatchToVec(md.results.Transient2DSolution(2).Thickness),...
     26        PatchToVec(md.results.Transient2DSolution(3).Vx),...
     27        PatchToVec(md.results.Transient2DSolution(3).Vy),...
     28        PatchToVec(md.results.Transient2DSolution(3).Vel),...
     29        PatchToVec(md.results.Transient2DSolution(3).Pressure),...
     30        PatchToVec(md.results.Transient2DSolution(3).Bed),...
     31        PatchToVec(md.results.Transient2DSolution(3).Surface),...
     32        PatchToVec(md.results.Transient2DSolution(3).Thickness),...
     33        };
  • issm/trunk/test/NightlyRun/test332.m

    r4975 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',Transient2DSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.Transient2DSolution(1).Vx),...
     13        PatchToVec(md.results.Transient2DSolution(1).Vy),...
     14        PatchToVec(md.results.Transient2DSolution(1).Vel),...
     15        PatchToVec(md.results.Transient2DSolution(1).Pressure),...
     16        PatchToVec(md.results.Transient2DSolution(1).Bed),...
     17        PatchToVec(md.results.Transient2DSolution(1).Surface),...
     18        PatchToVec(md.results.Transient2DSolution(1).Thickness),...
     19        PatchToVec(md.results.Transient2DSolution(2).Vx),...
     20        PatchToVec(md.results.Transient2DSolution(2).Vy),...
     21        PatchToVec(md.results.Transient2DSolution(2).Vel),...
     22        PatchToVec(md.results.Transient2DSolution(2).Pressure),...
     23        PatchToVec(md.results.Transient2DSolution(2).Bed),...
     24        PatchToVec(md.results.Transient2DSolution(2).Surface),...
     25        PatchToVec(md.results.Transient2DSolution(2).Thickness),...
     26        PatchToVec(md.results.Transient2DSolution(3).Vx),...
     27        PatchToVec(md.results.Transient2DSolution(3).Vy),...
     28        PatchToVec(md.results.Transient2DSolution(3).Vel),...
     29        PatchToVec(md.results.Transient2DSolution(3).Pressure),...
     30        PatchToVec(md.results.Transient2DSolution(3).Bed),...
     31        PatchToVec(md.results.Transient2DSolution(3).Surface),...
     32        PatchToVec(md.results.Transient2DSolution(3).Thickness),...
     33        };
  • issm/trunk/test/NightlyRun/test333.m

    r4975 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2', ...
     12                                           'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','MeltingRate3'};
     13field_tolerances={1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10};
     14field_values={...
     15        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     19        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     20        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     21        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     22        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     23        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     24        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     29        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     30        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     31        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     32        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     33        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     34        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     35        PatchToVec(md.results.Transient3DSolution(3).Vx),...
     36        PatchToVec(md.results.Transient3DSolution(3).Vy),...
     37        PatchToVec(md.results.Transient3DSolution(3).Vz),...
     38        PatchToVec(md.results.Transient3DSolution(3).Vel),...
     39        PatchToVec(md.results.Transient3DSolution(3).Pressure),...
     40        PatchToVec(md.results.Transient3DSolution(3).Bed),...
     41        PatchToVec(md.results.Transient3DSolution(3).Surface),...
     42        PatchToVec(md.results.Transient3DSolution(3).Thickness),...
     43        PatchToVec(md.results.Transient3DSolution(3).Temperature),...
     44        PatchToVec(md.results.Transient3DSolution(3).MeltingRate),...
     45        };
  • issm/trunk/test/NightlyRun/test334.m

    r4975 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2', ...
     12                                           'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','MeltingRate3'};
     13field_tolerances={1e-09,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-09,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-09,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10};
     14field_values={...
     15        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     19        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     20        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     21        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     22        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     23        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     24        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     29        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     30        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     31        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     32        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     33        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     34        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     35        PatchToVec(md.results.Transient3DSolution(3).Vx),...
     36        PatchToVec(md.results.Transient3DSolution(3).Vy),...
     37        PatchToVec(md.results.Transient3DSolution(3).Vz),...
     38        PatchToVec(md.results.Transient3DSolution(3).Vel),...
     39        PatchToVec(md.results.Transient3DSolution(3).Pressure),...
     40        PatchToVec(md.results.Transient3DSolution(3).Bed),...
     41        PatchToVec(md.results.Transient3DSolution(3).Surface),...
     42        PatchToVec(md.results.Transient3DSolution(3).Thickness),...
     43        PatchToVec(md.results.Transient3DSolution(3).Temperature),...
     44        PatchToVec(md.results.Transient3DSolution(3).MeltingRate),...
     45        };
  • issm/trunk/test/NightlyRun/test335.m

    r5015 r5098  
    77md.dt=0;
    88md=solve(md,'analysis_type',SteadystateSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Vx','Vy','Vz','Vel','Pressure','Temperature','MeltingRate'};
     12field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13
     13};
     14field_values={...
     15        PatchToVec(md.results.SteadystateSolution.Vx),...
     16        PatchToVec(md.results.SteadystateSolution.Vy),...
     17        PatchToVec(md.results.SteadystateSolution.Vz),...
     18        PatchToVec(md.results.SteadystateSolution.Vel),...
     19        PatchToVec(md.results.SteadystateSolution.Pressure),...
     20        PatchToVec(md.results.SteadystateSolution.Temperature),...
     21        PatchToVec(md.results.SteadystateSolution.MeltingRate),...
     22        };
  • issm/trunk/test/NightlyRun/test336.m

    r5015 r5098  
    77md.dt=0;
    88md=solve(md,'analysis_type',SteadystateSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Vx','Vy','Vz','Vel','Pressure','Temperature','MeltingRate'};
     12field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13
     13};
     14field_values={...
     15        PatchToVec(md.results.SteadystateSolution.Vx),...
     16        PatchToVec(md.results.SteadystateSolution.Vy),...
     17        PatchToVec(md.results.SteadystateSolution.Vz),...
     18        PatchToVec(md.results.SteadystateSolution.Vel),...
     19        PatchToVec(md.results.SteadystateSolution.Pressure),...
     20        PatchToVec(md.results.SteadystateSolution.Temperature),...
     21        PatchToVec(md.results.SteadystateSolution.MeltingRate),...
     22        };
  • issm/trunk/test/NightlyRun/test337.m

    r5033 r5098  
    2020md.cluster='none';
    2121md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     22
     23%Fields and tolerances to track changes
     24field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy'};
     25field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     26field_values={...
     27        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     28        md.results.DiagnosticSolution.J,...
     29        PatchToVec(md.results.DiagnosticSolution.DragCoefficient),...
     30        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     31        PatchToVec(md.results.DiagnosticSolution.Vel),...
     32        PatchToVec(md.results.DiagnosticSolution.Vx),...
     33        PatchToVec(md.results.DiagnosticSolution.Vy)
     34};
  • issm/trunk/test/NightlyRun/test338.m

    r5033 r5098  
    2020md.cluster=oshostname();
    2121md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     22
     23%Fields and tolerances to track changes
     24field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy'};
     25field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     26field_values={...
     27        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     28        md.results.DiagnosticSolution.J,...
     29        PatchToVec(md.results.DiagnosticSolution.DragCoefficient),...
     30        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     31        PatchToVec(md.results.DiagnosticSolution.Vel),...
     32        PatchToVec(md.results.DiagnosticSolution.Vx),...
     33        PatchToVec(md.results.DiagnosticSolution.Vy)
     34};
  • issm/trunk/test/NightlyRun/test339.m

    r5033 r5098  
    2121md.cluster='none';
    2222md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     23
     24%Fields and tolerances to track changes
     25field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy'};
     26field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     27field_values={...
     28        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     29        md.results.DiagnosticSolution.J,...
     30        PatchToVec(md.results.DiagnosticSolution.DragCoefficient),...
     31        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     32        PatchToVec(md.results.DiagnosticSolution.Vel),...
     33        PatchToVec(md.results.DiagnosticSolution.Vx),...
     34        PatchToVec(md.results.DiagnosticSolution.Vy)
     35};
  • issm/trunk/test/NightlyRun/test340.m

    r5033 r5098  
    2121md.cluster=oshostname();
    2222md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     23
     24%Fields and tolerances to track changes
     25field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy'};
     26field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     27field_values={...
     28        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     29        md.results.DiagnosticSolution.J,...
     30        PatchToVec(md.results.DiagnosticSolution.DragCoefficient),...
     31        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     32        PatchToVec(md.results.DiagnosticSolution.Vel),...
     33        PatchToVec(md.results.DiagnosticSolution.Vx),...
     34        PatchToVec(md.results.DiagnosticSolution.Vy)
     35};
  • issm/trunk/test/NightlyRun/test341.m

    r5033 r5098  
    2121md.cluster='none';
    2222md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     23
     24%Fields and tolerances to track changes
     25field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy'};
     26field_tolerances={1e-09,1e-08,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09};
     27field_values={...
     28        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     29        md.results.DiagnosticSolution.J,...
     30        PatchToVec(md.results.DiagnosticSolution.DragCoefficient),...
     31        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     32        PatchToVec(md.results.DiagnosticSolution.Vel),...
     33        PatchToVec(md.results.DiagnosticSolution.Vx),...
     34        PatchToVec(md.results.DiagnosticSolution.Vy)
     35};
  • issm/trunk/test/NightlyRun/test342.m

    r5033 r5098  
    2121md.cluster=oshostname();
    2222md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     23
     24%Fields and tolerances to track changes
     25field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy'};
     26field_tolerances={1e-08,1e-08,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-09,1e-10};
     27field_values={...
     28        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     29        md.results.DiagnosticSolution.J,...
     30        PatchToVec(md.results.DiagnosticSolution.DragCoefficient),...
     31        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     32        PatchToVec(md.results.DiagnosticSolution.Vel),...
     33        PatchToVec(md.results.DiagnosticSolution.Vx),...
     34        PatchToVec(md.results.DiagnosticSolution.Vy)
     35};
  • issm/trunk/test/NightlyRun/test343.m

    r5033 r5098  
    2121md.cluster='none';
    2222md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     23
     24%Fields and tolerances to track changes
     25field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy'};
     26field_tolerances={1e-08,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09};
     27field_values={...
     28        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     29        md.results.DiagnosticSolution.J,...
     30        PatchToVec(md.results.DiagnosticSolution.DragCoefficient),...
     31        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     32        PatchToVec(md.results.DiagnosticSolution.Vel),...
     33        PatchToVec(md.results.DiagnosticSolution.Vx),...
     34        PatchToVec(md.results.DiagnosticSolution.Vy)
     35};
  • issm/trunk/test/NightlyRun/test344.m

    r5033 r5098  
    2121md.cluster=oshostname();
    2222md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     23
     24%Fields and tolerances to track changes
     25field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy'};
     26field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09};
     27field_values={...
     28        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     29        md.results.DiagnosticSolution.J,...
     30        PatchToVec(md.results.DiagnosticSolution.DragCoefficient),...
     31        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     32        PatchToVec(md.results.DiagnosticSolution.Vel),...
     33        PatchToVec(md.results.DiagnosticSolution.Vx),...
     34        PatchToVec(md.results.DiagnosticSolution.Vy)
     35};
  • issm/trunk/test/NightlyRun/test401.m

    r4996 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx','Vy','Vel','Pressure'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.DiagnosticSolution.Vx),...
     13        PatchToVec(md.results.DiagnosticSolution.Vy),...
     14        PatchToVec(md.results.DiagnosticSolution.Vel),...
     15        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     16        };
  • issm/trunk/test/NightlyRun/test402.m

    r4996 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx','Vy','Vel','Pressure'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.DiagnosticSolution.Vx),...
     13        PatchToVec(md.results.DiagnosticSolution.Vy),...
     14        PatchToVec(md.results.DiagnosticSolution.Vel),...
     15        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     16        };
  • issm/trunk/test/NightlyRun/test403.m

    r4996 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test404.m

    r4996 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test405.m

    r4996 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test406.m

    r4996 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test407.m

    r4996 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test408.m

    r4996 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-08,1e-08,1e-08,1e-08,1e-08};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test409.m

    r4996 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-05,1e-05,1e-05,1e-05,1e-05};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test410.m

    r4996 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-05,1e-05,1e-05,1e-05,1e-05};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test411.m

    r4996 r5098  
    77md.dt=0;
    88md=solve(md,'analysis_type',ThermalSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Temperature','MeltingRate'};
     12field_tolerances={1e-13,1e-13};
     13field_values={...
     14        PatchToVec(md.results.ThermalSolution.Temperature),...
     15        PatchToVec(md.results.ThermalSolution.MeltingRate),...
     16        };
  • issm/trunk/test/NightlyRun/test412.m

    r4996 r5098  
    77md.dt=0;
    88md=solve(md,'analysis_type',ThermalSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Temperature','MeltingRate'};
     12field_tolerances={1e-13,1e-13};
     13field_values={...
     14        PatchToVec(md.results.ThermalSolution.Temperature),...
     15        PatchToVec(md.results.ThermalSolution.MeltingRate),...
     16        };
  • issm/trunk/test/NightlyRun/test413.m

    r4996 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',ThermalSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Temperature','MeltingRate'};
     11field_tolerances={1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.ThermalSolution.Temperature),...
     14        PatchToVec(md.results.ThermalSolution.MeltingRate),...
     15        };
  • issm/trunk/test/NightlyRun/test414.m

    r4996 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',ThermalSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Temperature','MeltingRate'};
     11field_tolerances={1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.ThermalSolution.Temperature),...
     14        PatchToVec(md.results.ThermalSolution.MeltingRate),...
     15        };
  • issm/trunk/test/NightlyRun/test415.m

    r4996 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',Transient2DSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.Transient2DSolution(1).Vx),...
     13        PatchToVec(md.results.Transient2DSolution(1).Vy),...
     14        PatchToVec(md.results.Transient2DSolution(1).Vel),...
     15        PatchToVec(md.results.Transient2DSolution(1).Pressure),...
     16        PatchToVec(md.results.Transient2DSolution(1).Bed),...
     17        PatchToVec(md.results.Transient2DSolution(1).Surface),...
     18        PatchToVec(md.results.Transient2DSolution(1).Thickness),...
     19        PatchToVec(md.results.Transient2DSolution(2).Vx),...
     20        PatchToVec(md.results.Transient2DSolution(2).Vy),...
     21        PatchToVec(md.results.Transient2DSolution(2).Vel),...
     22        PatchToVec(md.results.Transient2DSolution(2).Pressure),...
     23        PatchToVec(md.results.Transient2DSolution(2).Bed),...
     24        PatchToVec(md.results.Transient2DSolution(2).Surface),...
     25        PatchToVec(md.results.Transient2DSolution(2).Thickness),...
     26        PatchToVec(md.results.Transient2DSolution(3).Vx),...
     27        PatchToVec(md.results.Transient2DSolution(3).Vy),...
     28        PatchToVec(md.results.Transient2DSolution(3).Vel),...
     29        PatchToVec(md.results.Transient2DSolution(3).Pressure),...
     30        PatchToVec(md.results.Transient2DSolution(3).Bed),...
     31        PatchToVec(md.results.Transient2DSolution(3).Surface),...
     32        PatchToVec(md.results.Transient2DSolution(3).Thickness),...
     33        };
  • issm/trunk/test/NightlyRun/test416.m

    r4996 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',Transient2DSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.Transient2DSolution(1).Vx),...
     13        PatchToVec(md.results.Transient2DSolution(1).Vy),...
     14        PatchToVec(md.results.Transient2DSolution(1).Vel),...
     15        PatchToVec(md.results.Transient2DSolution(1).Pressure),...
     16        PatchToVec(md.results.Transient2DSolution(1).Bed),...
     17        PatchToVec(md.results.Transient2DSolution(1).Surface),...
     18        PatchToVec(md.results.Transient2DSolution(1).Thickness),...
     19        PatchToVec(md.results.Transient2DSolution(2).Vx),...
     20        PatchToVec(md.results.Transient2DSolution(2).Vy),...
     21        PatchToVec(md.results.Transient2DSolution(2).Vel),...
     22        PatchToVec(md.results.Transient2DSolution(2).Pressure),...
     23        PatchToVec(md.results.Transient2DSolution(2).Bed),...
     24        PatchToVec(md.results.Transient2DSolution(2).Surface),...
     25        PatchToVec(md.results.Transient2DSolution(2).Thickness),...
     26        PatchToVec(md.results.Transient2DSolution(3).Vx),...
     27        PatchToVec(md.results.Transient2DSolution(3).Vy),...
     28        PatchToVec(md.results.Transient2DSolution(3).Vel),...
     29        PatchToVec(md.results.Transient2DSolution(3).Pressure),...
     30        PatchToVec(md.results.Transient2DSolution(3).Bed),...
     31        PatchToVec(md.results.Transient2DSolution(3).Surface),...
     32        PatchToVec(md.results.Transient2DSolution(3).Thickness),...
     33        };
  • issm/trunk/test/NightlyRun/test417.m

    r4996 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2', ...
     12                                           'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','MeltingRate3'};
     13field_tolerances={1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05};
     14field_values={...
     15        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     19        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     20        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     21        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     22        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     23        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     24        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     29        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     30        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     31        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     32        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     33        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     34        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     35        PatchToVec(md.results.Transient3DSolution(3).Vx),...
     36        PatchToVec(md.results.Transient3DSolution(3).Vy),...
     37        PatchToVec(md.results.Transient3DSolution(3).Vz),...
     38        PatchToVec(md.results.Transient3DSolution(3).Vel),...
     39        PatchToVec(md.results.Transient3DSolution(3).Pressure),...
     40        PatchToVec(md.results.Transient3DSolution(3).Bed),...
     41        PatchToVec(md.results.Transient3DSolution(3).Surface),...
     42        PatchToVec(md.results.Transient3DSolution(3).Thickness),...
     43        PatchToVec(md.results.Transient3DSolution(3).Temperature),...
     44        PatchToVec(md.results.Transient3DSolution(3).MeltingRate),...
     45        };
  • issm/trunk/test/NightlyRun/test418.m

    r4996 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2', ...
     12                                           'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','MeltingRate3'};
     13field_tolerances={1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-04,1e-04,1e-02,1e-04,1e-02,1e-04,1e-04,1e-04,1e-04,1e-01};
     14field_values={...
     15        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     19        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     20        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     21        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     22        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     23        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     24        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     29        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     30        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     31        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     32        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     33        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     34        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     35        PatchToVec(md.results.Transient3DSolution(3).Vx),...
     36        PatchToVec(md.results.Transient3DSolution(3).Vy),...
     37        PatchToVec(md.results.Transient3DSolution(3).Vz),...
     38        PatchToVec(md.results.Transient3DSolution(3).Vel),...
     39        PatchToVec(md.results.Transient3DSolution(3).Pressure),...
     40        PatchToVec(md.results.Transient3DSolution(3).Bed),...
     41        PatchToVec(md.results.Transient3DSolution(3).Surface),...
     42        PatchToVec(md.results.Transient3DSolution(3).Thickness),...
     43        PatchToVec(md.results.Transient3DSolution(3).Temperature),...
     44        PatchToVec(md.results.Transient3DSolution(3).MeltingRate),...
     45        };
  • issm/trunk/test/NightlyRun/test419.m

    r5015 r5098  
    77md.dt=0;
    88md=solve(md,'analysis_type',SteadystateSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Vx','Vy','Vz','Vel','Pressure','Temperature','MeltingRate'};
     12field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13
     13};
     14field_values={...
     15        PatchToVec(md.results.SteadystateSolution.Vx),...
     16        PatchToVec(md.results.SteadystateSolution.Vy),...
     17        PatchToVec(md.results.SteadystateSolution.Vz),...
     18        PatchToVec(md.results.SteadystateSolution.Vel),...
     19        PatchToVec(md.results.SteadystateSolution.Pressure),...
     20        PatchToVec(md.results.SteadystateSolution.Temperature),...
     21        PatchToVec(md.results.SteadystateSolution.MeltingRate),...
     22        };
  • issm/trunk/test/NightlyRun/test420.m

    r5015 r5098  
    77md.dt=0;
    88md=solve(md,'analysis_type',SteadystateSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Vx','Vy','Vz','Vel','Pressure','Temperature','MeltingRate'};
     12field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13
     13};
     14field_values={...
     15        PatchToVec(md.results.SteadystateSolution.Vx),...
     16        PatchToVec(md.results.SteadystateSolution.Vy),...
     17        PatchToVec(md.results.SteadystateSolution.Vz),...
     18        PatchToVec(md.results.SteadystateSolution.Vel),...
     19        PatchToVec(md.results.SteadystateSolution.Pressure),...
     20        PatchToVec(md.results.SteadystateSolution.Temperature),...
     21        PatchToVec(md.results.SteadystateSolution.MeltingRate),...
     22        };
  • issm/trunk/test/NightlyRun/test421.m

    r5015 r5098  
    77md.dt=0;
    88md=solve(md,'analysis_type',SteadystateSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Vx','Vy','Vz','Vel','Pressure','Temperature','MeltingRate'};
     12field_tolerances={1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-06};
     13field_values={...
     14        PatchToVec(md.results.SteadystateSolution.Vx),...
     15        PatchToVec(md.results.SteadystateSolution.Vy),...
     16        PatchToVec(md.results.SteadystateSolution.Vz),...
     17        PatchToVec(md.results.SteadystateSolution.Vel),...
     18        PatchToVec(md.results.SteadystateSolution.Pressure),...
     19        PatchToVec(md.results.SteadystateSolution.Temperature),...
     20        PatchToVec(md.results.SteadystateSolution.MeltingRate),...
     21        };
  • issm/trunk/test/NightlyRun/test422.m

    r5015 r5098  
    77md.dt=0;
    88md=solve(md,'analysis_type',SteadystateSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Vx','Vy','Vz','Vel','Pressure','Temperature','MeltingRate'};
     12field_tolerances={1e-09,1e-09,1e-08,1e-09,1e-09,1e-09,1e-06
     13};
     14field_values={...
     15        PatchToVec(md.results.SteadystateSolution.Vx),...
     16        PatchToVec(md.results.SteadystateSolution.Vy),...
     17        PatchToVec(md.results.SteadystateSolution.Vz),...
     18        PatchToVec(md.results.SteadystateSolution.Vel),...
     19        PatchToVec(md.results.SteadystateSolution.Pressure),...
     20        PatchToVec(md.results.SteadystateSolution.Temperature),...
     21        PatchToVec(md.results.SteadystateSolution.MeltingRate),...
     22        };
  • issm/trunk/test/NightlyRun/test423.m

    r5037 r5098  
    3030
    3131md=solve(md,'analysis_type',DiagnosticSolutionEnum,'overwrite','y');
     32
     33%Fields and tolerances to track changes
     34md=tres(md,'dakota');
     35md.results.dakota.importancefactors=importancefactors(md,'DragCoefficient','MaxVel')';
     36field_names     ={'importancefactors'};
     37field_tolerances={1e-11};
     38field_values={...
     39         md.results.dakota.importancefactors,...
     40        };
  • issm/trunk/test/NightlyRun/test424.m

    r5037 r5098  
    3030
    3131md=solve(md,'analysis_type',DiagnosticSolutionEnum,'overwrite','y');
     32
     33%Fields and tolerances to track changes
     34md=tres(md,'dakota');
     35md.results.dakota.importancefactors=importancefactors(md,'DragCoefficient','MaxVel')';
     36field_names     ={'importancefactors'};
     37field_tolerances={1e-10};
     38field_values={...
     39         md.results.dakota.importancefactors,...
     40        };
  • issm/trunk/test/NightlyRun/test425.m

    r5040 r5098  
    3131
    3232md=solve(md,'analysis_type',DiagnosticSolutionEnum,'overwrite','y');
     33
     34%Fields and tolerances to track changes
     35md=tres(md,'dakota');
     36md.results.dakota.importancefactors=importancefactors(md,'DragCoefficient','MaxVel')';
     37field_names     ={'importancefactors'};
     38field_tolerances={1e-11};
     39field_values={...
     40         md.results.dakota.importancefactors,...
     41        };
  • issm/trunk/test/NightlyRun/test426.m

    r5040 r5098  
    3131
    3232md=solve(md,'analysis_type',DiagnosticSolutionEnum,'overwrite','y');
     33
     34%Fields and tolerances to track changes
     35md=tres(md,'dakota');
     36md.results.dakota.importancefactors=importancefactors(md,'DragCoefficient','MaxVel')';
     37field_names     ={'importancefactors'};
     38field_tolerances={1e-10};
     39field_values={...
     40         md.results.dakota.importancefactors,...
     41        };
  • issm/trunk/test/NightlyRun/test427.m

    r5044 r5098  
    4848
    4949md=solve(md,'analysis_type',DiagnosticSolutionEnum,'overwrite','y');
     50
     51%Fields and tolerances to track changes
     52md=tres(md,'dakota');
     53%ok, mass flux of 3 profiles should be -3 Gt/yr -3 Gt/yr and the sum, which is -6 Gt/yr
     54%we recover those mass fluxes through the mean of the response.
     55%also, we recover the max velo, which should be 1m/yr.
     56%we put all that data in the importancefactors, which we will use to test for success.
     57%also, check that the stddev are 0.
     58md.results.dakota.importancefactors=[];
     59for i=1:7,
     60        md.results.dakota.importancefactors=[md.results.dakota.importancefactors md.results.dakota.dresp_out(i).mean];
     61end
     62for i=1:7,
     63        md.results.dakota.importancefactors=[md.results.dakota.importancefactors md.results.dakota.dresp_out(i).stddev];
     64end
     65field_names     ={'importancefactors'};
     66field_tolerances={1e-11};
     67field_values={...
     68         md.results.dakota.importancefactors,...
     69        };
  • issm/trunk/test/NightlyRun/test428.m

    r5044 r5098  
    4848
    4949md=solve(md,'analysis_type',DiagnosticSolutionEnum,'overwrite','y');
     50
     51%Fields and tolerances to track changes
     52md=tres(md,'dakota');
     53%ok, mass flux of 3 profiles should be -3 Gt/yr -3 Gt/yr and the sum, which is -6 Gt/yr
     54%we recover those mass fluxes through the mean of the response.
     55%also, we recover the max velo, which should be 1m/yr.
     56%we put all that data in the importancefactors, which we will use to test for success.
     57%also, check that the stddev are 0.
     58md.results.dakota.importancefactors=[];
     59for i=1:7,
     60        md.results.dakota.importancefactors=[md.results.dakota.importancefactors md.results.dakota.dresp_out(i).mean];
     61end
     62for i=1:7,
     63        md.results.dakota.importancefactors=[md.results.dakota.importancefactors md.results.dakota.dresp_out(i).stddev];
     64end
     65field_names     ={'importancefactors'};
     66field_tolerances={1e-11};
     67field_values={...
     68         md.results.dakota.importancefactors,...
     69        };
  • issm/trunk/test/NightlyRun/test429.m

    r5047 r5098  
    2222md.cluster='none';
    2323md=solve(md,'analysis_type',SteadystateSolutionEnum);
     24
     25%Fields and tolerances to track changes
     26field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy' 'Vz' 'Temperature' 'MeltingRate'};
     27field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     28field_values={...
     29        PatchToVec(md.results.SteadystateSolution.Gradient),...
     30        md.results.SteadystateSolution.J,...
     31        PatchToVec(md.results.SteadystateSolution.DragCoefficient),...
     32        PatchToVec(md.results.SteadystateSolution.Pressure),...
     33        PatchToVec(md.results.SteadystateSolution.Vel),...
     34        PatchToVec(md.results.SteadystateSolution.Vx),...
     35        PatchToVec(md.results.SteadystateSolution.Vy),...
     36        PatchToVec(md.results.SteadystateSolution.Vz),...
     37        PatchToVec(md.results.SteadystateSolution.Temperature),...
     38        PatchToVec(md.results.SteadystateSolution.MeltingRate)
     39};
  • issm/trunk/test/NightlyRun/test430.m

    r5047 r5098  
    2222md.cluster=oshostname();
    2323md=solve(md,'analysis_type',SteadystateSolutionEnum);
     24
     25%Fields and tolerances to track changes
     26field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy' 'Vz' 'Temperature' 'MeltingRate'};
     27field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     28field_values={...
     29        PatchToVec(md.results.SteadystateSolution.Gradient),...
     30        md.results.SteadystateSolution.J,...
     31        PatchToVec(md.results.SteadystateSolution.DragCoefficient),...
     32        PatchToVec(md.results.SteadystateSolution.Pressure),...
     33        PatchToVec(md.results.SteadystateSolution.Vel),...
     34        PatchToVec(md.results.SteadystateSolution.Vx),...
     35        PatchToVec(md.results.SteadystateSolution.Vy),...
     36        PatchToVec(md.results.SteadystateSolution.Vz),...
     37        PatchToVec(md.results.SteadystateSolution.Temperature),...
     38        PatchToVec(md.results.SteadystateSolution.MeltingRate)
     39};
  • issm/trunk/test/NightlyRun/test431.m

    r5047 r5098  
    2222md.cluster='none';
    2323md=solve(md,'analysis_type',SteadystateSolutionEnum);
     24
     25%Fields and tolerances to track changes
     26field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy' 'Vz' 'Temperature' 'MeltingRate'};
     27field_tolerances={1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-06};
     28field_values={...
     29        PatchToVec(md.results.SteadystateSolution.Gradient),...
     30        md.results.SteadystateSolution.J,...
     31        PatchToVec(md.results.SteadystateSolution.DragCoefficient),...
     32        PatchToVec(md.results.SteadystateSolution.Pressure),...
     33        PatchToVec(md.results.SteadystateSolution.Vel),...
     34        PatchToVec(md.results.SteadystateSolution.Vx),...
     35        PatchToVec(md.results.SteadystateSolution.Vy),...
     36        PatchToVec(md.results.SteadystateSolution.Vz),...
     37        PatchToVec(md.results.SteadystateSolution.Temperature),...
     38        PatchToVec(md.results.SteadystateSolution.MeltingRate)
     39};
  • issm/trunk/test/NightlyRun/test432.m

    r5047 r5098  
    2222md.cluster=oshostname();
    2323md=solve(md,'analysis_type',SteadystateSolutionEnum);
     24
     25%Fields and tolerances to track changes
     26field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy' 'Vz' 'Temperature' 'MeltingRate'};
     27field_tolerances={1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-06};
     28field_values={...
     29        PatchToVec(md.results.SteadystateSolution.Gradient),...
     30        md.results.SteadystateSolution.J,...
     31        PatchToVec(md.results.SteadystateSolution.DragCoefficient),...
     32        PatchToVec(md.results.SteadystateSolution.Pressure),...
     33        PatchToVec(md.results.SteadystateSolution.Vel),...
     34        PatchToVec(md.results.SteadystateSolution.Vx),...
     35        PatchToVec(md.results.SteadystateSolution.Vy),...
     36        PatchToVec(md.results.SteadystateSolution.Vz),...
     37        PatchToVec(md.results.SteadystateSolution.Temperature),...
     38        PatchToVec(md.results.SteadystateSolution.MeltingRate)
     39};
  • issm/trunk/test/NightlyRun/test501.m

    r4991 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx','Vy','Vel','Pressure'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.DiagnosticSolution.Vx),...
     13        PatchToVec(md.results.DiagnosticSolution.Vy),...
     14        PatchToVec(md.results.DiagnosticSolution.Vel),...
     15        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     16        };
  • issm/trunk/test/NightlyRun/test502.m

    r4991 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx','Vy','Vel','Pressure'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.DiagnosticSolution.Vx),...
     13        PatchToVec(md.results.DiagnosticSolution.Vy),...
     14        PatchToVec(md.results.DiagnosticSolution.Vel),...
     15        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     16        };
  • issm/trunk/test/NightlyRun/test503.m

    r4991 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test504.m

    r4991 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test505.m

    r4991 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test506.m

    r4991 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09};
     12field_values={...
     13        PatchToVec(md.results.DiagnosticSolution.Vx),...
     14        PatchToVec(md.results.DiagnosticSolution.Vy),...
     15        PatchToVec(md.results.DiagnosticSolution.Vz),...
     16        PatchToVec(md.results.DiagnosticSolution.Vel),...
     17        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     18        };
  • issm/trunk/test/NightlyRun/test507.m

    r4991 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',Transient2DSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.Transient2DSolution(1).Vx),...
     13        PatchToVec(md.results.Transient2DSolution(1).Vy),...
     14        PatchToVec(md.results.Transient2DSolution(1).Vel),...
     15        PatchToVec(md.results.Transient2DSolution(1).Pressure),...
     16        PatchToVec(md.results.Transient2DSolution(1).Bed),...
     17        PatchToVec(md.results.Transient2DSolution(1).Surface),...
     18        PatchToVec(md.results.Transient2DSolution(1).Thickness),...
     19        PatchToVec(md.results.Transient2DSolution(2).Vx),...
     20        PatchToVec(md.results.Transient2DSolution(2).Vy),...
     21        PatchToVec(md.results.Transient2DSolution(2).Vel),...
     22        PatchToVec(md.results.Transient2DSolution(2).Pressure),...
     23        PatchToVec(md.results.Transient2DSolution(2).Bed),...
     24        PatchToVec(md.results.Transient2DSolution(2).Surface),...
     25        PatchToVec(md.results.Transient2DSolution(2).Thickness),...
     26        };
  • issm/trunk/test/NightlyRun/test508.m

    r4991 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',Transient2DSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2'};
     10field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.Transient2DSolution(1).Vx),...
     13        PatchToVec(md.results.Transient2DSolution(1).Vy),...
     14        PatchToVec(md.results.Transient2DSolution(1).Vel),...
     15        PatchToVec(md.results.Transient2DSolution(1).Pressure),...
     16        PatchToVec(md.results.Transient2DSolution(1).Bed),...
     17        PatchToVec(md.results.Transient2DSolution(1).Surface),...
     18        PatchToVec(md.results.Transient2DSolution(1).Thickness),...
     19        PatchToVec(md.results.Transient2DSolution(2).Vx),...
     20        PatchToVec(md.results.Transient2DSolution(2).Vy),...
     21        PatchToVec(md.results.Transient2DSolution(2).Vel),...
     22        PatchToVec(md.results.Transient2DSolution(2).Pressure),...
     23        PatchToVec(md.results.Transient2DSolution(2).Bed),...
     24        PatchToVec(md.results.Transient2DSolution(2).Surface),...
     25        PatchToVec(md.results.Transient2DSolution(2).Thickness),...
     26        };
  • issm/trunk/test/NightlyRun/test509.m

    r4991 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2'};
     12field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     13field_values={...
     14        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     15        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     18        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     19        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     20        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     21        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     22        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     23        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     24        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     28        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     29        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     30        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     31        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     32        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     33        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     34        };
  • issm/trunk/test/NightlyRun/test510.m

    r4991 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2'};
     12field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     13field_values={...
     14        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     15        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     18        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     19        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     20        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     21        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     22        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     23        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     24        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     28        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     29        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     30        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     31        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     32        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     33        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     34        };
  • issm/trunk/test/NightlyRun/test511.m

    r4991 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2'};
     12field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     13field_values={...
     14        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     15        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     18        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     19        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     20        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     21        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     22        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     23        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     24        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     28        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     29        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     30        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     31        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     32        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     33        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     34        };
  • issm/trunk/test/NightlyRun/test512.m

    r4991 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     11                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2'};
     12field_tolerances={1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12};
     13field_values={...
     14        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     15        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     18        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     19        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     20        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     21        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     22        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     23        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     24        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     28        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     29        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     30        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     31        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     32        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     33        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     34        };
  • issm/trunk/test/NightlyRun/test513.m

    r4991 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10%The thickness wants to be lower than 1 so we contrain it to 1
     11field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     12                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2'};
     13field_tolerances={1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08};
     14field_values={...
     15        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     19        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     20        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     21        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     22        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     23        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     24        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     29        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     30        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     31        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     32        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     33        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     34        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     35        };
  • issm/trunk/test/NightlyRun/test514.m

    r4991 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',Transient3DSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10%The thickness wants to be lower than 1 so we contrain it to 1
     11field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','MeltingRate1', ...
     12                                      'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','MeltingRate2'};
     13field_tolerances={1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-06,1e-06,1e-06,1e-06,1e-06,1e-06,1e-06,1e-06,1e-06,1e-06};
     14field_values={...
     15        PatchToVec(md.results.Transient3DSolution(1).Vx),...
     16        PatchToVec(md.results.Transient3DSolution(1).Vy),...
     17        PatchToVec(md.results.Transient3DSolution(1).Vz),...
     18        PatchToVec(md.results.Transient3DSolution(1).Vel),...
     19        PatchToVec(md.results.Transient3DSolution(1).Pressure),...
     20        PatchToVec(md.results.Transient3DSolution(1).Bed),...
     21        PatchToVec(md.results.Transient3DSolution(1).Surface),...
     22        PatchToVec(md.results.Transient3DSolution(1).Thickness),...
     23        PatchToVec(md.results.Transient3DSolution(1).Temperature),...
     24        PatchToVec(md.results.Transient3DSolution(1).MeltingRate),...
     25        PatchToVec(md.results.Transient3DSolution(2).Vx),...
     26        PatchToVec(md.results.Transient3DSolution(2).Vy),...
     27        PatchToVec(md.results.Transient3DSolution(2).Vz),...
     28        PatchToVec(md.results.Transient3DSolution(2).Vel),...
     29        PatchToVec(md.results.Transient3DSolution(2).Pressure),...
     30        PatchToVec(md.results.Transient3DSolution(2).Bed),...
     31        PatchToVec(md.results.Transient3DSolution(2).Surface),...
     32        PatchToVec(md.results.Transient3DSolution(2).Thickness),...
     33        PatchToVec(md.results.Transient3DSolution(2).Temperature),...
     34        PatchToVec(md.results.Transient3DSolution(2).MeltingRate),...
     35        };
  • issm/trunk/test/NightlyRun/test515.m

    r4996 r5098  
    77md.dt=0;
    88md=solve(md,'analysis_type',SteadystateSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Vx','Vy','Vz','Vel','Pressure','Temperature','MeltingRate'};
     12field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13
     13};
     14field_values={...
     15        PatchToVec(md.results.SteadystateSolution.Vx),...
     16        PatchToVec(md.results.SteadystateSolution.Vy),...
     17        PatchToVec(md.results.SteadystateSolution.Vz),...
     18        PatchToVec(md.results.SteadystateSolution.Vel),...
     19        PatchToVec(md.results.SteadystateSolution.Pressure),...
     20        PatchToVec(md.results.SteadystateSolution.Temperature),...
     21        PatchToVec(md.results.SteadystateSolution.MeltingRate),...
     22        };
  • issm/trunk/test/NightlyRun/test516.m

    r4996 r5098  
    77md.dt=0;
    88md=solve(md,'analysis_type',SteadystateSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Vx','Vy','Vz','Vel','Pressure','Temperature','MeltingRate'};
     12field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-08
     13};
     14field_values={...
     15        PatchToVec(md.results.SteadystateSolution.Vx),...
     16        PatchToVec(md.results.SteadystateSolution.Vy),...
     17        PatchToVec(md.results.SteadystateSolution.Vz),...
     18        PatchToVec(md.results.SteadystateSolution.Vel),...
     19        PatchToVec(md.results.SteadystateSolution.Pressure),...
     20        PatchToVec(md.results.SteadystateSolution.Temperature),...
     21        PatchToVec(md.results.SteadystateSolution.MeltingRate),...
     22        };
  • issm/trunk/test/NightlyRun/test517.m

    r4996 r5098  
    77md.dt=0;
    88md=solve(md,'analysis_type',SteadystateSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Vx','Vy','Vz','Vel','Pressure','Temperature','MeltingRate'};
     12field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13
     13};
     14field_values={...
     15        PatchToVec(md.results.SteadystateSolution.Vx),...
     16        PatchToVec(md.results.SteadystateSolution.Vy),...
     17        PatchToVec(md.results.SteadystateSolution.Vz),...
     18        PatchToVec(md.results.SteadystateSolution.Vel),...
     19        PatchToVec(md.results.SteadystateSolution.Pressure),...
     20        PatchToVec(md.results.SteadystateSolution.Temperature),...
     21        PatchToVec(md.results.SteadystateSolution.MeltingRate),...
     22        };
  • issm/trunk/test/NightlyRun/test518.m

    r4996 r5098  
    77md.dt=0;
    88md=solve(md,'analysis_type',SteadystateSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Vx','Vy','Vz','Vel','Pressure','Temperature','MeltingRate'};
     12field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-06
     13};
     14field_values={...
     15        PatchToVec(md.results.SteadystateSolution.Vx),...
     16        PatchToVec(md.results.SteadystateSolution.Vy),...
     17        PatchToVec(md.results.SteadystateSolution.Vz),...
     18        PatchToVec(md.results.SteadystateSolution.Vel),...
     19        PatchToVec(md.results.SteadystateSolution.Pressure),...
     20        PatchToVec(md.results.SteadystateSolution.Temperature),...
     21        PatchToVec(md.results.SteadystateSolution.MeltingRate),...
     22        };
  • issm/trunk/test/NightlyRun/test519.m

    r4996 r5098  
    77md.dt=0;
    88md=solve(md,'analysis_type',SteadystateSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Vx','Vy','Vz','Vel','Pressure','Temperature','MeltingRate'};
     12field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-06
     13};
     14field_values={...
     15        PatchToVec(md.results.SteadystateSolution.Vx),...
     16        PatchToVec(md.results.SteadystateSolution.Vy),...
     17        PatchToVec(md.results.SteadystateSolution.Vz),...
     18        PatchToVec(md.results.SteadystateSolution.Vel),...
     19        PatchToVec(md.results.SteadystateSolution.Pressure),...
     20        PatchToVec(md.results.SteadystateSolution.Temperature),...
     21        PatchToVec(md.results.SteadystateSolution.MeltingRate),...
     22        };
  • issm/trunk/test/NightlyRun/test520.m

    r4996 r5098  
    77md.dt=0;
    88md=solve(md,'analysis_type',SteadystateSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Vx','Vy','Vz','Vel','Pressure','Temperature','MeltingRate'};
     12field_tolerances={1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-07
     13};
     14field_values={...
     15        PatchToVec(md.results.SteadystateSolution.Vx),...
     16        PatchToVec(md.results.SteadystateSolution.Vy),...
     17        PatchToVec(md.results.SteadystateSolution.Vz),...
     18        PatchToVec(md.results.SteadystateSolution.Vel),...
     19        PatchToVec(md.results.SteadystateSolution.Pressure),...
     20        PatchToVec(md.results.SteadystateSolution.Temperature),...
     21        PatchToVec(md.results.SteadystateSolution.MeltingRate),...
     22        };
  • issm/trunk/test/NightlyRun/test521.m

    r5052 r5098  
    2525md.cluster='none';
    2626md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     27
     28%Fields and tolerances to track changes
     29field_names     ={'Gradient' 'Misfits' 'RheologyB' 'Pressure' 'Vel' 'Vx' 'Vy'};
     30field_tolerances={1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10};
     31field_values={...
     32        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     33        md.results.DiagnosticSolution.J,...
     34        PatchToVec(md.results.DiagnosticSolution.RheologyB),...
     35        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     36        PatchToVec(md.results.DiagnosticSolution.Vel),...
     37        PatchToVec(md.results.DiagnosticSolution.Vx),...
     38        PatchToVec(md.results.DiagnosticSolution.Vy)
     39};
  • issm/trunk/test/NightlyRun/test522.m

    r5052 r5098  
    2525md.cluster=oshostname;
    2626md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     27
     28%Fields and tolerances to track changes
     29field_names     ={'Gradient' 'Misfits' 'RheologyB' 'Pressure' 'Vel' 'Vx' 'Vy'};
     30field_tolerances={1e-12,1e-12,1e-12,1e-09,1e-12,1e-12,1e-12,1e-12,1e-12,1e-12};
     31field_values={...
     32        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     33        md.results.DiagnosticSolution.J,...
     34        PatchToVec(md.results.DiagnosticSolution.RheologyB),...
     35        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     36        PatchToVec(md.results.DiagnosticSolution.Vel),...
     37        PatchToVec(md.results.DiagnosticSolution.Vx),...
     38        PatchToVec(md.results.DiagnosticSolution.Vy)
     39};
  • issm/trunk/test/NightlyRun/test523.m

    r5052 r5098  
    2121md.cluster='none';
    2222md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     23
     24%Fields and tolerances to track changes
     25field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy'};
     26field_tolerances={1e-11,1e-11,1e-11,1e-11,1e-11,1e-11,1e-11,1e-11,1e-11,1e-11};
     27field_values={...
     28        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     29        md.results.DiagnosticSolution.J,...
     30        PatchToVec(md.results.DiagnosticSolution.DragCoefficient),...
     31        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     32        PatchToVec(md.results.DiagnosticSolution.Vel),...
     33        PatchToVec(md.results.DiagnosticSolution.Vx),...
     34        PatchToVec(md.results.DiagnosticSolution.Vy)
     35};
  • issm/trunk/test/NightlyRun/test524.m

    r5052 r5098  
    2121md.cluster=oshostname();
    2222md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     23
     24%Fields and tolerances to track changes
     25field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy'};
     26field_tolerances={1e-11,1e-11,1e-11,1e-11,1e-11,1e-11,1e-11,1e-11,1e-11,1e-11};
     27field_values={...
     28        PatchToVec(md.results.DiagnosticSolution.Gradient),...
     29        md.results.DiagnosticSolution.J,...
     30        PatchToVec(md.results.DiagnosticSolution.DragCoefficient),...
     31        PatchToVec(md.results.DiagnosticSolution.Pressure),...
     32        PatchToVec(md.results.DiagnosticSolution.Vel),...
     33        PatchToVec(md.results.DiagnosticSolution.Vx),...
     34        PatchToVec(md.results.DiagnosticSolution.Vy)
     35};
  • issm/trunk/test/NightlyRun/test525.m

    r5052 r5098  
    2222md.cluster='none';
    2323md=solve(md,'analysis_type',SteadystateSolutionEnum);
     24
     25%Fields and tolerances to track changes
     26field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy' 'Vz' 'Temperature' 'MeltingRate'};
     27field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     28field_values={...
     29        PatchToVec(md.results.SteadystateSolution.Gradient),...
     30        md.results.SteadystateSolution.J,...
     31        PatchToVec(md.results.SteadystateSolution.DragCoefficient),...
     32        PatchToVec(md.results.SteadystateSolution.Pressure),...
     33        PatchToVec(md.results.SteadystateSolution.Vel),...
     34        PatchToVec(md.results.SteadystateSolution.Vx),...
     35        PatchToVec(md.results.SteadystateSolution.Vy),...
     36        PatchToVec(md.results.SteadystateSolution.Vz),...
     37        PatchToVec(md.results.SteadystateSolution.Temperature),...
     38        PatchToVec(md.results.SteadystateSolution.MeltingRate)
     39};
  • issm/trunk/test/NightlyRun/test526.m

    r5052 r5098  
    2222md.cluster=oshostname();
    2323md=solve(md,'analysis_type',SteadystateSolutionEnum);
     24
     25%Fields and tolerances to track changes
     26field_names     ={'Gradient' 'Misfits' 'DragCoefficient' 'Pressure' 'Vel' 'Vx' 'Vy' 'Vz' 'Temperature' 'MeltingRate'};
     27field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     28field_values={...
     29        PatchToVec(md.results.SteadystateSolution.Gradient),...
     30        md.results.SteadystateSolution.J,...
     31        PatchToVec(md.results.SteadystateSolution.DragCoefficient),...
     32        PatchToVec(md.results.SteadystateSolution.Pressure),...
     33        PatchToVec(md.results.SteadystateSolution.Vel),...
     34        PatchToVec(md.results.SteadystateSolution.Vx),...
     35        PatchToVec(md.results.SteadystateSolution.Vy),...
     36        PatchToVec(md.results.SteadystateSolution.Vz),...
     37        PatchToVec(md.results.SteadystateSolution.Temperature),...
     38        PatchToVec(md.results.SteadystateSolution.MeltingRate)
     39};
  • issm/trunk/test/NightlyRun/test527.m

    r5062 r5098  
    4242x7=md2.x;
    4343y7=md2.y;
     44
     45%Fields and tolerances to track changes
     46field_names     ={'x1' 'y1' 'x2' 'y2' 'x3' 'y3' 'x4' 'y4' 'x5' 'y5' 'x6' 'y6'  'x7' 'y7' };
     47field_tolerances={1e-13 1e-13 1e-13 1e-13 1e-13 1e-13 1e-13 1e-13 1e-13 1e-13 1e-13 1e-13 1e-13 1e-13};
     48field_values={...
     49        x1, y1,...
     50        y2, y2,...
     51        y3, y3,...
     52        y4, y4,...
     53        y5, y5,...
     54        y6, y6,...
     55        y7, y7,...
     56        };
  • issm/trunk/test/NightlyRun/test601.m

    r4989 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',PrognosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Thickness'};
     10field_tolerances={1e-13};
     11field_values={...
     12        PatchToVec(md.results.PrognosticSolution.Thickness),...
     13        };
  • issm/trunk/test/NightlyRun/test602.m

    r4989 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',PrognosticSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Thickness'};
     10field_tolerances={1e-13};
     11field_values={...
     12        PatchToVec(md.results.PrognosticSolution.Thickness),...
     13        };
  • issm/trunk/test/NightlyRun/test603.m

    r4989 r5098  
    77md.cluster='none';
    88md=solve(md,'analysis_type',PrognosticSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Thickness'};
     12field_tolerances={1e-13};
     13field_values={...
     14        PatchToVec(md.results.PrognosticSolution.Thickness),...
     15        };
  • issm/trunk/test/NightlyRun/test604.m

    r4989 r5098  
    77md.cluster=oshostname();
    88md=solve(md,'analysis_type',PrognosticSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Thickness'};
     12field_tolerances={1e-13};
     13field_values={...
     14        PatchToVec(md.results.PrognosticSolution.Thickness),...
     15        };
  • issm/trunk/test/NightlyRun/test605.m

    r4989 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',PrognosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Thickness'};
     11field_tolerances={1e-13};
     12field_values={...
     13        PatchToVec(md.results.PrognosticSolution.Thickness),...
     14        };
  • issm/trunk/test/NightlyRun/test606.m

    r4989 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',PrognosticSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Thickness'};
     11field_tolerances={1e-13};
     12field_values={...
     13        PatchToVec(md.results.PrognosticSolution.Thickness),...
     14        };
  • issm/trunk/test/NightlyRun/test607.m

    r4989 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',SurfaceSlopeSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'SurfaceSlopeX','SurfaceSlopeY'};
     10field_tolerances={1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeX),...
     13        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeY),...
     14        };
  • issm/trunk/test/NightlyRun/test608.m

    r4989 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',SurfaceSlopeSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'SurfaceSlopeX','SurfaceSlopeY'};
     10field_tolerances={1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeX),...
     13        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeY),...
     14        };
  • issm/trunk/test/NightlyRun/test609.m

    r4989 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',SurfaceSlopeSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'SurfaceSlopeX','SurfaceSlopeY'};
     11field_tolerances={1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeX),...
     14        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeY),...
     15        };
  • issm/trunk/test/NightlyRun/test610.m

    r4989 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',SurfaceSlopeSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'SurfaceSlopeX','SurfaceSlopeY'};
     11field_tolerances={1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeX),...
     14        PatchToVec(md.results.SurfaceSlopeSolution.SurfaceSlopeY),...
     15        };
  • issm/trunk/test/NightlyRun/test611.m

    r4989 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',BedSlopeSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'BedSlopeX','BedSlopeY'};
     10field_tolerances={1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.BedSlopeSolution.BedSlopeX),...
     13        PatchToVec(md.results.BedSlopeSolution.BedSlopeY),...
     14        };
  • issm/trunk/test/NightlyRun/test612.m

    r4989 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',BedSlopeSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'BedSlopeX','BedSlopeY'};
     10field_tolerances={1e-13,1e-13};
     11field_values={...
     12        PatchToVec(md.results.BedSlopeSolution.BedSlopeX),...
     13        PatchToVec(md.results.BedSlopeSolution.BedSlopeY),...
     14        };
  • issm/trunk/test/NightlyRun/test613.m

    r4989 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',BedSlopeSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'BedSlopeX','BedSlopeY'};
     11field_tolerances={1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.BedSlopeSolution.BedSlopeX),...
     14        PatchToVec(md.results.BedSlopeSolution.BedSlopeY),...
     15        };
  • issm/trunk/test/NightlyRun/test614.m

    r4989 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',BedSlopeSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'BedSlopeX','BedSlopeY'};
     11field_tolerances={1e-13,1e-13};
     12field_values={...
     13        PatchToVec(md.results.BedSlopeSolution.BedSlopeX),...
     14        PatchToVec(md.results.BedSlopeSolution.BedSlopeY),...
     15        };
  • issm/trunk/test/NightlyRun/test615.m

    r4989 r5098  
    55md.cluster='none';
    66md=solve(md,'analysis_type',BalancedthicknessSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Thickness'};
     10field_tolerances={1e-13};
     11field_values={...
     12        PatchToVec(md.results.BalancedthicknessSolution.Thickness),...
     13        };
  • issm/trunk/test/NightlyRun/test616.m

    r4989 r5098  
    55md.cluster=oshostname();
    66md=solve(md,'analysis_type',BalancedthicknessSolutionEnum);
     7
     8%Fields and tolerances to track changes
     9field_names     ={'Thickness'};
     10field_tolerances={1e-13};
     11field_values={...
     12        PatchToVec(md.results.BalancedthicknessSolution.Thickness),...
     13        };
  • issm/trunk/test/NightlyRun/test617.m

    r4989 r5098  
    77md.cluster='none';
    88md=solve(md,'analysis_type',BalancedthicknessSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Thickness'};
     12field_tolerances={1e-13};
     13field_values={...
     14        PatchToVec(md.results.BalancedthicknessSolution.Thickness),...
     15        };
  • issm/trunk/test/NightlyRun/test618.m

    r4989 r5098  
    77md.cluster=oshostname();
    88md=solve(md,'analysis_type',BalancedthicknessSolutionEnum);
     9
     10%Fields and tolerances to track changes
     11field_names     ={'Thickness'};
     12field_tolerances={1e-13};
     13field_values={...
     14        PatchToVec(md.results.BalancedthicknessSolution.Thickness),...
     15        };
  • issm/trunk/test/NightlyRun/test619.m

    r4989 r5098  
    66md.cluster='none';
    77md=solve(md,'analysis_type',BalancedthicknessSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Thickness'};
     11field_tolerances={1e-13};
     12field_values={...
     13        PatchToVec(md.results.BalancedthicknessSolution.Thickness),...
     14        };
  • issm/trunk/test/NightlyRun/test620.m

    r4989 r5098  
    66md.cluster=oshostname();
    77md=solve(md,'analysis_type',BalancedthicknessSolutionEnum);
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Thickness'};
     11field_tolerances={1e-13};
     12field_values={...
     13        PatchToVec(md.results.BalancedthicknessSolution.Thickness),...
     14        };
Note: See TracChangeset for help on using the changeset viewer.