Ignore:
Timestamp:
04/29/20 14:07:15 (5 years ago)
Author:
schlegel
Message:

CHG: Gemb maintain initial layer depth profile throughout the simulation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test243.py

    r24735 r24760  
    2121md.smb = SMBgemb()
    2222md.smb.setdefaultparameters(md.mesh, md.geometry)
    23 md.smb.dsnowIdx = 0
     23md.smb.dsnowIdx = 1
    2424
    2525#load hourly surface forcing date from 1979 to 2009:
     
    6060md = solve(md, 'Transient')
    6161
    62 nlayers=np.size(md.results.TransientSolution[-1].SmbT,1)
     62nlayers=np.size(md.results.TransientSolution[0].SmbT,1)
     63for i in range(1, np.size(md.results.TransientSolution,0)):
     64    nlayers=np.minimum(np.size(md.results.TransientSolution[i].SmbT,1),nlayers)
    6365
    6466#Fields and tolerances to track changes
    6567field_names = ['Layers','SmbDz', 'SmbT', 'SmbD', 'SmbRe', 'SmbGdn', 'SmbGsp', 'SmbA', 'SmbEC', 'SmbMassBalance', 'SmbMAdd', 'SmbDzAdd', 'SmbFAC', 'SmbMeanSHF', 'SmbMeanLHF', 'SmbMeanULW', 'SmbNetLW', 'SmbNetSW']
    66 field_tolerances = [1e-12,1e-12,1e-12,1e-11,1e-11,1e-11,1e-11,1e-12,1e-11,1e-12,1e-12,1e-12,1e-11,2e-11,2e-11,1e-11,9e-10,2e-11]
     68field_tolerances = [1e-12,2e-12,1e-12,1e-11,1e-11,2e-11,1e-11,1e-12,1e-11,1e-12,1e-12,1e-12,1e-11,2e-11,2e-11,1e-11,9e-10,2e-11]
    6769#shape is different in python solution (fixed using reshape) which can cause test failure:
    6870field_values = [nlayers,md.results.TransientSolution[-1].SmbDz[0, 0:nlayers].reshape(1, -1),
Note: See TracChangeset for help on using the changeset viewer.