Changeset 2043


Ignore:
Timestamp:
08/28/09 08:37:12 (15 years ago)
Author:
Eric.Larour
Message:

nightly fix, could not find md.control_type

Location:
issm/trunk
Files:
25 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/utils/Nightly/testsgetfields.m

    r2039 r2043  
    1 function fields=testsgetfields(mdtype,analysis),
     1function fields=testsgetfields(md,analysis),
    22%TESTSGETFIELDS - build the fields to be checked from a analysis
    33%
     
    66%
    77%   Usage:
    8 %      fields=testsgetfields(mdtype,analysis)
     8%      fields=testsgetfields(md,analysis)
    99%
    1010%   Example:
    11 %      fields=testsgetfields(md.type,'diagnostic')
     11%      fields=testsgetfields(md,'diagnostic')
    1212%
    1313%   See also: TESTSGETANALYSIS, TESTGETPACKAGE
     
    1717                fields={'diagnostic.vel','diagnostic.J','diagnostic.parameter'};
    1818        else
    19                 if strcmpi(mdtype,'3d')
     19                if strcmpi(md.type,'3d')
    2020                        fields={'diagnostic.vy','diagnostic.vz'};
    2121                else
     
    3434
    3535elseif strcmpi(analysis,'transient'),
    36         if strcmpi(mdtype,'3d')
     36        if strcmpi(md.type,'3d')
    3737                fields={'transient(end).vel','transient(end).pressure','transient(end).temperature','transient(end).melting','transient(end).thickness','transient(end).surface','transient(end).bed'};
    3838        else
  • issm/trunk/test/Verification/IceSheetIceFrontM2d_7/runme.m

    r1908 r2043  
    7474
    7575                %compute fields to be checked
    76                 fields=testsgetfields(md.type,solution);
     76                fields=testsgetfields(md,solution);
    7777
    7878                %load archive
  • issm/trunk/test/Verification/IceSheetIceFrontM3d_8/runme.m

    r1908 r2043  
    7575
    7676                %compute fields to be checked
    77                 fields=testsgetfields(md.type,solution);
     77                fields=testsgetfields(md,solution);
    7878
    7979                %load archive
  • issm/trunk/test/Verification/IceSheetIceFrontMP3d_9/runme.m

    r1908 r2043  
    7676
    7777                %compute fields to be checked
    78                 fields=testsgetfields(md.type,solution);
     78                fields=testsgetfields(md,solution);
    7979
    8080                %load archive
  • issm/trunk/test/Verification/IceSheetIceFrontP3d_10/runme.m

    r1908 r2043  
    7575
    7676                %compute fields to be checked
    77                 fields=testsgetfields(md.type,solution);
     77                fields=testsgetfields(md,solution);
    7878
    7979                %load archive
  • issm/trunk/test/Verification/IceSheetIceFrontS3d_11/runme.m

    r1908 r2043  
    7676
    7777                %compute fields to be checked
    78                 fields=testsgetfields(md.type,solution);
     78                fields=testsgetfields(md,solution);
    7979
    8080                %load archive
  • issm/trunk/test/Verification/IceSheetNoIceFrontH2d_12/runme.m

    r1908 r2043  
    7474
    7575                %compute fields to be checked
    76                 fields=testsgetfields(md.type,solution);
     76                fields=testsgetfields(md,solution);
    7777
    7878                %load archive
  • issm/trunk/test/Verification/IceSheetNoIceFrontH3d_13/runme.m

    r1908 r2043  
    7676
    7777                %compute fields to be checked
    78                 fields=testsgetfields(md.type,solution);
     78                fields=testsgetfields(md,solution);
    7979
    8080                %load archive
  • issm/trunk/test/Verification/IceSheetNoIceFrontHM2d_14/runme.m

    r1908 r2043  
    7474
    7575                %compute fields to be checked
    76                 fields=testsgetfields(md.type,solution);
     76                fields=testsgetfields(md,solution);
    7777
    7878                %load archive
  • issm/trunk/test/Verification/IceSheetNoIceFrontHM3d_15/runme.m

    r1908 r2043  
    7676
    7777                %compute fields to be checked
    78                 fields=testsgetfields(md.type,solution);
     78                fields=testsgetfields(md,solution);
    7979
    8080                %load archive
  • issm/trunk/test/Verification/IceSheetNoIceFrontM2d_16/runme.m

    r1908 r2043  
    7474
    7575                %compute fields to be checked
    76                 fields=testsgetfields(md.type,solution);
     76                fields=testsgetfields(md,solution);
    7777
    7878                %load archive
  • issm/trunk/test/Verification/IceSheetNoIceFrontM3d_17/runme.m

    r1908 r2043  
    7575
    7676                %compute fields to be checked
    77                 fields=testsgetfields(md.type,solution);
     77                fields=testsgetfields(md,solution);
    7878
    7979                %load archive
  • issm/trunk/test/Verification/IceSheetNoIceFrontP3d_18/runme.m

    r1908 r2043  
    7575
    7676                %compute fields to be checked
    77                 fields=testsgetfields(md.type,solution);
     77                fields=testsgetfields(md,solution);
    7878
    7979                %load archive
  • issm/trunk/test/Verification/IceSheetNoIceFrontS3d_19/runme.m

    r1908 r2043  
    7676
    7777                %compute fields to be checked
    78                 fields=testsgetfields(md.type,solution);
     78                fields=testsgetfields(md,solution);
    7979
    8080                %load archive
  • issm/trunk/test/Verification/IceShelfIceFrontM2dRifts_24/runme.m

    r1908 r2043  
    8080
    8181                %compute fields to be checked
    82                 fields=testsgetfields(md.type,solution);
     82                fields=testsgetfields(md,solution);
    8383
    8484                %load archive
  • issm/trunk/test/Verification/IceShelfIceFrontM2d_1/runme.m

    r1908 r2043  
    7474
    7575                %compute fields to be checked
    76                 fields=testsgetfields(md.type,solution);
     76                fields=testsgetfields(md,solution);
    7777
    7878                %load archive
  • issm/trunk/test/Verification/IceShelfIceFrontM3d_2/runme.m

    r2030 r2043  
    7575
    7676                %compute fields to be checked
    77                 fields=testsgetfields(md.type,solution);
     77                fields=testsgetfields(md,solution);
    7878
    7979                %load archive
  • issm/trunk/test/Verification/IceShelfIceFrontMP3d_3/runme.m

    r1908 r2043  
    7676
    7777                %compute fields to be checked
    78                 fields=testsgetfields(md.type,solution);
     78                fields=testsgetfields(md,solution);
    7979
    8080                %load archive
  • issm/trunk/test/Verification/IceShelfIceFrontMPS3d_4/runme.m

    r1908 r2043  
    7676
    7777                %compute fields to be checked
    78                 fields=testsgetfields(md.type,solution);
     78                fields=testsgetfields(md,solution);
    7979
    8080                %load archive
  • issm/trunk/test/Verification/IceShelfIceFrontP3d_5/runme.m

    r2034 r2043  
    7575
    7676                %compute fields to be checked
    77                 fields=testsgetfields(md.type,solution);
     77                fields=testsgetfields(md,solution);
    7878
    7979                %load archive
  • issm/trunk/test/Verification/IceShelfIceFrontS3d_6/runme.m

    r2035 r2043  
    7676
    7777                %compute fields to be checked
    78                 fields=testsgetfields(md.type,solution);
     78                fields=testsgetfields(md,solution);
    7979
    8080                %load archive
  • issm/trunk/test/Verification/PigControlMethodBM2d_21/runme.m

    r1957 r2043  
    7272
    7373                %compute fields to be checked
    74                 fields=testsgetfields(md.type,solution);
     74                fields=testsgetfields(md,solution);
    7575
    7676                %load archive
  • issm/trunk/test/Verification/PigControlMethodDragM2d_20/runme.m

    r1919 r2043  
    7171
    7272                %compute fields to be checked
    73                 fields=testsgetfields(md.type,solution);
     73                fields=testsgetfields(md,solution);
    7474
    7575                %load archive
  • issm/trunk/test/Verification/PigControlMethodDragP3d_22/runme.m

    r1919 r2043  
    7272
    7373                %compute fields to be checked
    74                 fields=testsgetfields(md.type,solution);
     74                fields=testsgetfields(md,solution);
    7575
    7676                %load archive
  • issm/trunk/test/Verification/PigControlMethodDragS3d_23/runme.m

    r1919 r2043  
    7272
    7373                %compute fields to be checked
    74                 fields=testsgetfields(md.type,solution);
     74                fields=testsgetfields(md,solution);
    7575
    7676                %load archive
Note: See TracChangeset for help on using the changeset viewer.