Changeset 24567
- Timestamp:
- 02/19/20 02:35:13 (5 years ago)
- Location:
- issm/trunk-jpl/src/m
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/thermal.py
r24261 r24567 15 15 16 16 def __init__(self): # {{{ 17 self.spctemperature = float('NaN')17 self.spctemperature = np.nan 18 18 self.penalty_threshold = 0 19 19 self.stabilization = 0 … … 107 107 md = checkfield(md, 'fieldname', 'thermal.watercolumn_upperlimit', '>=', 0) 108 108 109 TEMP = md.thermal.spctemperature[:-1].flatten( -1)109 TEMP = md.thermal.spctemperature[:-1].flatten() 110 110 pos = np.where(~np.isnan(TEMP)) 111 111 try: … … 114 114 spccol = 1 115 115 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() 117 117 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") 119 119 md = checkfield(md, 'fieldname', 'thermal.isenthalpy', 'numel', [1], 'values', [0, 1]) 120 120 md = checkfield(md, 'fieldname', 'thermal.isdynamicbasalspc', 'numel', [1], 'values', [0, 1]) -
issm/trunk-jpl/src/m/mesh/roundmesh.py
r24213 r24567 17 17 md = roundmesh(md, radius, resolution) 18 18 """ 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 19 22 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 26 24 theta = np.linspace(0., 2. * np.pi, pointsonedge) 27 25 x_list = roundsigfig(radius * np.cos(theta), 12) … … 33 31 expwrite(A, 'RoundDomainOutline.exp') 34 32 35 # Call Bamg33 # Call Bamg 36 34 md = triangle(md, 'RoundDomainOutline.exp', resolution) 37 # md = bamg(md, 'domain', 'RoundDomainOutline.exp', 'hmin', resolution)35 # md = bamg(md, 'domain', 'RoundDomainOutline.exp', 'hmin', resolution) 38 36 39 # move the closest node to the center37 # move the closest node to the center 40 38 pos = np.argmin(md.mesh.x**2 + md.mesh.y**2) 41 39 md.mesh.x[pos] = 0. 42 40 md.mesh.y[pos] = 0. 43 41 44 # delete domain42 # delete domain 45 43 os.remove('RoundDomainOutline.exp') 46 44
Note:
See TracChangeset
for help on using the changeset viewer.