Changeset 17415


Ignore:
Timestamp:
03/12/14 09:03:50 (11 years ago)
Author:
seroussi
Message:

NEW: added test for shelf dampening (FS)

Location:
issm/trunk-jpl/test
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test703.m

    r17213 r17415  
    4343md.timestepping.time_step=0.000001;
    4444md.timestepping.final_time=0.000005;
     45md.stressbalance.shelf_dampening=1;
    4546md.surfaceforcings.mass_balance=zeros(md.mesh.numberofvertices,1);
    4647md.basalforcings.melting_rate=zeros(md.mesh.numberofvertices,1);
     
    5859%Go solve
    5960md.cluster=generic('np',3);
     61md.stressbalance.shelf_dampening=1;
     62md1=solve(md,TransientSolutionEnum());
     63
     64md.stressbalance.shelf_dampening=0;
    6065md=solve(md,TransientSolutionEnum());
    6166
     
    6469        'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1',...
    6570        'Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2',...
    66         'Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3'};
     71        'Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3',...
     72        'Vx1_damp','Vy1_damp','Vel1_damp','Pressure1_damp','Bed1_damp','Surface1_damp','Thickness1_damp',...
     73        'Vx2_damp','Vy2_damp','Vel2_damp','Pressure2_damp','Bed2_damp','Surface2_damp','Thickness2_damp',...
     74        'Vx3_damp','Vy3_damp','Vel3_damp','Pressure3_damp','Bed3_damp','Surface3_damp','Thickness3_damp'};
    6775field_tolerances={...
     76        1e-08,1e-08,1e-08,1e-08,1e-10,1e-10,1e-10,...
     77        1e-08,1e-08,1e-08,1e-08,1e-10,1e-10,1e-10,...
     78        1e-08,1e-08,1e-08,1e-08,1e-10,1e-10,1e-10,...
    6879        1e-08,1e-08,1e-08,1e-08,1e-10,1e-10,1e-10,...
    6980        1e-08,1e-08,1e-08,1e-08,1e-10,1e-10,1e-10,...
     
    91102        (md.results.TransientSolution(3).Surface),...
    92103        (md.results.TransientSolution(3).Thickness),...
     104        (md1.results.TransientSolution(1).Vx),...
     105        (md1.results.TransientSolution(1).Vy),...
     106        (md1.results.TransientSolution(1).Vel),...
     107        (md1.results.TransientSolution(1).Pressure),...
     108        (md1.results.TransientSolution(1).Bed),...
     109        (md1.results.TransientSolution(1).Surface),...
     110        (md1.results.TransientSolution(1).Thickness),...
     111        (md1.results.TransientSolution(2).Vx),...
     112        (md1.results.TransientSolution(2).Vy),...
     113        (md1.results.TransientSolution(2).Vel),...
     114        (md1.results.TransientSolution(2).Pressure),...
     115        (md1.results.TransientSolution(2).Bed),...
     116        (md1.results.TransientSolution(2).Surface),...
     117        (md1.results.TransientSolution(2).Thickness),...
     118        (md1.results.TransientSolution(3).Vx),...
     119        (md1.results.TransientSolution(3).Vy),...
     120        (md1.results.TransientSolution(3).Vel),...
     121        (md1.results.TransientSolution(3).Pressure),...
     122        (md1.results.TransientSolution(3).Bed),...
     123        (md1.results.TransientSolution(3).Surface),...
     124        (md1.results.TransientSolution(3).Thickness),...
    93125        };
Note: See TracChangeset for help on using the changeset viewer.