Changeset 25719


Ignore:
Timestamp:
10/29/20 11:23:57 (4 years ago)
Author:
jdquinn
Message:

CHG: Correcting size retrieval

File:
1 edited

Legend:

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

    r24261 r25719  
    7272i2 = int(np.ceil(t2 / md.timestepping.time_step) + 2) - 1
    7373i3 = int(np.ceil(md.timestepping.final_time / (2. * md.timestepping.time_step))) - 1
    74 i4 = np.shape(md.results.TransientSolution)[0] - 1
     74i4 = len(md.results.TransientSolution) - 1
    7575field_values = [md.results.TransientSolution[i1].Enthalpy,
    7676                md.results.TransientSolution[i1].Temperature,
Note: See TracChangeset for help on using the changeset viewer.