Ignore:
Timestamp:
08/10/16 13:45:09 (9 years ago)
Author:
glperez
Message:

CHG: Modified runmes in examples to use the any function in step conditional statements.
CHG: Implemented other examples in jenkins script. Still need to fill in steps for a couple of examples.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/examples/Pig/runme.m

    r21057 r21128  
    11step=[1];
    22
    3 if step==1   %Mesh Generation #1
     3if any(step==1)   %Mesh Generation #1
    44        %Mesh parameters
    55        domain =['./DomainOutline.exp'];
     
    5757end
    5858
    59 if step==2  %Masks #2
     59if any(step==2)  %Masks #2
    6060
    6161        md = loadmodel('./Models/PIG_Mesh_generation');
     
    8686end
    8787
    88 if step==3  %Parameterization #3
     88if any(step==3)  %Parameterization #3
    8989
    9090        md = loadmodel('./Models/PIG_SetMask');
     
    9898end
    9999
    100 if step==4  %Control Method #4
     100if any(step==4)  %Control Method #4
    101101
    102102        md = loadmodel('./Models/PIG_Parameterization');
     
    141141end
    142142
    143 if step==5 %Plot #5
     143if any(step==5) %Plot #5
    144144
    145145        md = loadmodel('./Models/PIG_Control_drag');
     
    158158end
    159159
    160 if step==6  %Higher-Order #6
     160if any(step==6)  %Higher-Order #6
    161161
    162162        % Load Model
     
    174174end
    175175
    176 if step==7  %Plot #7
     176if any(step==7)  %Plot #7
    177177
    178178        mdHO = loadmodel('./Models/PIG_ModelHO');
Note: See TracChangeset for help on using the changeset viewer.