Ignore:
Timestamp:
08/29/15 11:55:39 (10 years ago)
Author:
Eric.Larour
Message:

CHG: moved md.surfaceforcings to md.smb.
By doing so, had to rename the SMB class to SMBforcing class (it's just that, a mass_balance forcing inside
a SMB class, hence the name).
We also now have an smb_core solution, taken out of the mass transport core. Makes more sense long term.
Synced all enums according to the new changes, and operated the adjustments in all the test decks.

In addition, progressing in terms of GEMB integration into ISSM, specifically at the SMBgemb level (which
is spurring all the changes described above). Brought the class up to the level of the GEMB.m call in Alex's
code. Starting the C integration now.

File:
1 edited

Legend:

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

    r19049 r19527  
    1414smb=[ smb smb*-1. ];
    1515
    16 md.surfaceforcings.mass_balance=smb;
    17 md.surfaceforcings.mass_balance(end+1,:)=[1.5 3.];
     16md.smb.mass_balance=smb;
     17md.smb.mass_balance(end+1,:)=[1.5 3.];
    1818md.transient.isthermal=0;
    1919
     
    2121
    2222%Fields and tolerances to track changes
    23 field_names={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','SurfaceforcingsMassBalance1', ...
    24         'Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2','SurfaceforcingsMassBalance2', ...
    25         'Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3','SurfaceforcingsMassBalance3', ...
    26         'Vx4','Vy4','Vel4','Pressure4','Bed4','Surface4','Thickness4','SurfaceforcingsMassBalance4'};
     23field_names={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','SmbMassBalance1', ...
     24        'Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2','SmbMassBalance2', ...
     25        'Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3','SmbMassBalance3', ...
     26        'Vx4','Vy4','Vel4','Pressure4','Bed4','Surface4','Thickness4','SmbMassBalance4'};
    2727field_tolerances={1e-09,1e-09,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,...
    2828        1e-09,1e-09,1e-10,1e-10,1e-10,1e-10,1e-10,1e-10,...
     
    3737        (md.results.TransientSolution(1).Surface),...
    3838        (md.results.TransientSolution(1).Thickness),...
    39         (md.results.TransientSolution(1).SurfaceforcingsMassBalance),...
     39        (md.results.TransientSolution(1).SmbMassBalance),...
    4040        (md.results.TransientSolution(2).Vx),...
    4141        (md.results.TransientSolution(2).Vy),...
     
    4545        (md.results.TransientSolution(2).Surface),...
    4646        (md.results.TransientSolution(2).Thickness),...
    47         (md.results.TransientSolution(2).SurfaceforcingsMassBalance),...
     47        (md.results.TransientSolution(2).SmbMassBalance),...
    4848        (md.results.TransientSolution(3).Vx),...
    4949        (md.results.TransientSolution(3).Vy),...
     
    5353        (md.results.TransientSolution(3).Surface),...
    5454        (md.results.TransientSolution(3).Thickness),...
    55         (md.results.TransientSolution(3).SurfaceforcingsMassBalance),...
     55        (md.results.TransientSolution(3).SmbMassBalance),...
    5656        (md.results.TransientSolution(4).Vx),...
    5757        (md.results.TransientSolution(4).Vy),...
     
    6161        (md.results.TransientSolution(4).Surface),...
    6262        (md.results.TransientSolution(4).Thickness),...
    63         (md.results.TransientSolution(4).SurfaceforcingsMassBalance),...
     63        (md.results.TransientSolution(4).SmbMassBalance),...
    6464        };
Note: See TracChangeset for help on using the changeset viewer.