Ignore:
Timestamp:
02/12/19 06:10:51 (6 years ago)
Author:
bdef
Message:

CHG: shifting to py3 version of python interface (py2 compatible)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/boundaryconditions/SetIceShelfBC.py

    r21303 r23716  
    7070                if np.ndim(md.inversion.vy_obs)==1:
    7171                        md.inversion.vy_obs=md.inversion.vy_obs.reshape(-1,)
    72                 print "      boundary conditions for stressbalance model: spc set as observed velocities"
     72                print("      boundary conditions for stressbalance model: spc set as observed velocities")
    7373                md.stressbalance.spcvx[pos]=md.inversion.vx_obs[pos]
    7474                md.stressbalance.spcvy[pos]=md.inversion.vy_obs[pos]
    7575        else:
    76                 print "      boundary conditions for stressbalance model: spc set as zero"
     76                print("      boundary conditions for stressbalance model: spc set as zero")
    7777
    7878        #Create zeros basalforcings and smb
     
    8383        if np.all(np.isnan(md.balancethickness.thickening_rate)):
    8484                md.balancethickness.thickening_rate=np.zeros((md.mesh.numberofvertices))
    85                 print "      no balancethickness.thickening_rate specified: values set as zero"
     85                print("      no balancethickness.thickening_rate specified: values set as zero")
    8686        md.masstransport.spcthickness=float('nan')*np.ones((md.mesh.numberofvertices))
    8787        md.balancethickness.spcthickness=float('nan')*np.ones((md.mesh.numberofvertices))
     
    9696                        md.basalforcings.geothermalflux=np.zeros((md.mesh.numberofvertices))
    9797        else:
    98                 print "      no thermal boundary conditions created: no observed temperature found"
     98                print("      no thermal boundary conditions created: no observed temperature found")
    9999
    100100        return md
Note: See TracChangeset for help on using the changeset viewer.