Changeset 12255


Ignore:
Timestamp:
05/16/12 13:09:55 (13 years ago)
Author:
cborstad
Message:

damage nightly run test

Location:
issm/branches/trunk-jpl-damage/test/NightlyRun
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/branches/trunk-jpl-damage/test/NightlyRun/README

    r5100 r12255  
    31316: 79North
    3232Add the id and testname in IdToName.m (incresing order)
    33 We try not to create to many .par and .exp files, so try to use the existing ones as much as possible.
     33We try not to create too many .par and .exp files, so try to use the existing ones as much as possible.
    3434To modify some characteristics, do it in the testxxx.m file.
    3535The testxxx_nightly.m is used to define the parameters you want to check in the nightlyruns.
  • issm/branches/trunk-jpl-damage/test/NightlyRun/test260.m

    r11014 r12255  
    1 md=triangle(model,'../Exp/Square.exp',350000);
     1md=triangle(model,'../Exp/Square.exp',150000);
    22md=setmask(md,'all','');
    33md=parameterize(md,'../Par/SquareShelf.par');
    4 md=extrude(md,3,1);
     4md.materials.rheology_Z=0.5*ones(md.mesh.numberofvertices,1);
    55md=setflowequation(md,'macayeal','all');
    66md.cluster=generic('name',oshostname(),'np',3);
    7 
    8 md.timestepping.time_step=1;
    9 md.settings.output_frequency=1;
    10 md.timestepping.final_time=4;
    11 
    12 %Set up transient
    13 smb = ones(md.mesh.numberofvertices,1)*3.6;
    14 smb=[ smb smb*-1 ];
    15 
    16 md.surfaceforcings.mass_balance= smb;
    17 md.surfaceforcings.mass_balance(end+1,:)=[1.5 3];
    18 md.transient.isthermal=0;
    19 
    20 md=solve(md,TransientSolutionEnum);
     7md=solve(md,DiagnosticSolutionEnum);
    218
    229%Fields and tolerances to track changes
    23 field_names     ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','SurfaceforcingsMassBalance1', ...
    24         'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','SurfaceforcingsMassBalance2', ...
    25         'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','SurfaceforcingsMassBalance3',...
    26         'Vx4','Vy4','Vz4','Vel4','Pressure4','Bed4','Surface4','Thickness4','SurfaceMassbalance4'};
    27 field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,...
    28         1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,...
    29         1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,...
    30         1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
    31 
     10field_names     ={'Vx','Vy','Vel','Pressure','Damage'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
    3212field_values={...
    33         (md.results.TransientSolution(1).Vx),...
    34         (md.results.TransientSolution(1).Vy),...
    35         (md.results.TransientSolution(1).Vz),...
    36         (md.results.TransientSolution(1).Vel),...
    37         (md.results.TransientSolution(1).Pressure),...
    38         (md.results.TransientSolution(1).Bed),...
    39         (md.results.TransientSolution(1).Surface),...
    40         (md.results.TransientSolution(1).Thickness),...
    41         (md.results.TransientSolution(1).SurfaceforcingsMassBalance),...
    42         (md.results.TransientSolution(2).Vx),...
    43         (md.results.TransientSolution(2).Vy),...
    44         (md.results.TransientSolution(2).Vz),...
    45         (md.results.TransientSolution(2).Vel),...
    46         (md.results.TransientSolution(2).Pressure),...
    47         (md.results.TransientSolution(2).Bed),...
    48         (md.results.TransientSolution(2).Surface),...
    49         (md.results.TransientSolution(2).Thickness),...
    50         (md.results.TransientSolution(2).SurfaceforcingsMassBalance),...
    51         (md.results.TransientSolution(3).Vx),...
    52         (md.results.TransientSolution(3).Vy),...
    53         (md.results.TransientSolution(3).Vz),...
    54         (md.results.TransientSolution(3).Vel),...
    55         (md.results.TransientSolution(3).Pressure),...
    56         (md.results.TransientSolution(3).Bed),...
    57         (md.results.TransientSolution(3).Surface),...
    58         (md.results.TransientSolution(3).Thickness),...
    59         (md.results.TransientSolution(3).SurfaceforcingsMassBalance),...
    60         (md.results.TransientSolution(4).Vx),...
    61         (md.results.TransientSolution(4).Vy),...
    62         (md.results.TransientSolution(4).Vz),...
    63         (md.results.TransientSolution(4).Vel),...
    64         (md.results.TransientSolution(4).Pressure),...
    65         (md.results.TransientSolution(4).Bed),...
    66         (md.results.TransientSolution(4).Surface),...
    67         (md.results.TransientSolution(4).Thickness),...
    68         (md.results.TransientSolution(4).SurfaceforcingsMassBalance),...
     13        (md.results.DiagnosticSolution.Vx),...
     14        (md.results.DiagnosticSolution.Vy),...
     15        (md.results.DiagnosticSolution.Vel),...
     16        (md.results.DiagnosticSolution.Pressure),...
     17        (md.results.DiagnosticSolution.MaterialsRheologyZbar),...
    6918        };
Note: See TracChangeset for help on using the changeset viewer.