Ignore:
Timestamp:
10/18/19 06:52:19 (5 years ago)
Author:
bdef
Message:

BUG: fixing some negative number syntax

File:
1 edited

Legend:

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

    r24214 r24256  
    3131md.timestepping.time_step = .1
    3232md.slr.sealevel = newforcing(md.timestepping.start_time, md.timestepping.final_time,
    33                              md.timestepping.time_step, - 200., 200., md.mesh.numberofvertices)
     33                             md.timestepping.time_step, -200., 200., md.mesh.numberofvertices)
    3434
    3535md.cluster = generic('name', gethostname(), 'np', 3)
     
    4747    field_names.append('Time-' + str(md.results.TransientSolution[i].time) + ' - yr - ice_levelset - S - sl - (1 - di) * H')
    4848    field_tolerances.append(1e-12)
    49     field_values.append(md.results.TransientSolution[i].MaskGroundediceLevelset.reshape(- 1, ) - (md.geometry.surface - md.results.TransientSolution[i].Sealevel.reshape(- 1, ) - (1 - md.materials.rho_ice / md.materials.rho_water) * md.geometry.thickness))
     49    field_values.append(md.results.TransientSolution[i].MaskGroundediceLevelset.reshape(-1, ) - (md.geometry.surface - md.results.TransientSolution[i].Sealevel.reshape(-1, ) - (1 - md.materials.rho_ice / md.materials.rho_water) * md.geometry.thickness))
Note: See TracChangeset for help on using the changeset viewer.