Changeset 24567


Ignore:
Timestamp:
02/19/20 02:35:13 (5 years ago)
Author:
bdef
Message:

BUG:minor changes to suit my new numpy

Location:
issm/trunk-jpl/src/m
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/thermal.py

    r24261 r24567  
    1515
    1616    def __init__(self):  # {{{
    17         self.spctemperature = float('NaN')
     17        self.spctemperature = np.nan
    1818        self.penalty_threshold = 0
    1919        self.stabilization = 0
     
    107107            md = checkfield(md, 'fieldname', 'thermal.watercolumn_upperlimit', '>=', 0)
    108108
    109             TEMP = md.thermal.spctemperature[:-1].flatten(-1)
     109            TEMP = md.thermal.spctemperature[:-1].flatten()
    110110            pos = np.where(~np.isnan(TEMP))
    111111            try:
     
    114114                spccol = 1
    115115
    116             replicate = np.tile(md.geometry.surface - md.mesh.z, (spccol)).flatten(-1)
     116            replicate = np.tile(md.geometry.surface - md.mesh.z, (spccol)).flatten()
    117117            control = md.materials.meltingpoint - md.materials.beta * md.materials.rho_ice * md.constants.g * replicate + 1.0e-5
    118             md = checkfield(md, 'fieldname', 'thermal.spctemperature', 'field', md.thermal.spctemperature.flatten(-1)[pos], '<=', control[pos], 'message', "spctemperature should be below the adjusted melting point")
     118            md = checkfield(md, 'fieldname', 'thermal.spctemperature', 'field', md.thermal.spctemperature.flatten()[pos], '<=', control[pos], 'message', "spctemperature should be below the adjusted melting point")
    119119            md = checkfield(md, 'fieldname', 'thermal.isenthalpy', 'numel', [1], 'values', [0, 1])
    120120            md = checkfield(md, 'fieldname', 'thermal.isdynamicbasalspc', 'numel', [1], 'values', [0, 1])
  • issm/trunk-jpl/src/m/mesh/roundmesh.py

    r24213 r24567  
    1717          md = roundmesh(md, radius, resolution)
    1818    """
     19    # First we have to create the domain outline
     20    # Get number of points on the circle
     21    pointsonedge = int(np.floor((2. * np.pi * radius) / resolution) + 1)  # + 1 to close the outline
    1922
    20     #First we have to create the domain outline
    21 
    22     #Get number of points on the circle
    23     pointsonedge = np.floor((2. * np.pi * radius) / resolution) + 1  # + 1 to close the outline
    24 
    25     #Calculate the cartesians coordinates of the points
     23    # Calculate the cartesians coordinates of the points
    2624    theta = np.linspace(0., 2. * np.pi, pointsonedge)
    2725    x_list = roundsigfig(radius * np.cos(theta), 12)
     
    3331    expwrite(A, 'RoundDomainOutline.exp')
    3432
    35     #Call Bamg
     33    # Call Bamg
    3634    md = triangle(md, 'RoundDomainOutline.exp', resolution)
    37     #md = bamg(md, 'domain', 'RoundDomainOutline.exp', 'hmin', resolution)
     35    # md = bamg(md, 'domain', 'RoundDomainOutline.exp', 'hmin', resolution)
    3836
    39     #move the closest node to the center
     37    # move the closest node to the center
    4038    pos = np.argmin(md.mesh.x**2 + md.mesh.y**2)
    4139    md.mesh.x[pos] = 0.
    4240    md.mesh.y[pos] = 0.
    4341
    44     #delete domain
     42    # delete domain
    4543    os.remove('RoundDomainOutline.exp')
    4644
Note: See TracChangeset for help on using the changeset viewer.