Changeset 24711 for issm/trunk-jpl/test/NightlyRun/test701.py
- Timestamp:
- 04/16/20 02:44:38 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test701.py
r24261 r24711 13 13 md = bamgflowband(model(), x, b + h, b, 'hmax', 80.) 14 14 15 print(isinstance(md, model))16 17 15 #Geometry #interp1d returns a function to be called on md.mesh.x 18 16 md.geometry.surface = np.interp(md.mesh.x, x, b + h) … … 21 19 22 20 #mask 23 md.mask.ice_levelset = -np.ones((md.mesh.numberofvertices ,))21 md.mask.ice_levelset = -np.ones((md.mesh.numberofvertices)) 24 22 md.mask.ice_levelset[np.where(md.mesh.vertexflags(2))] = 0. 25 md.mask.groundedice_levelset = np.zeros((md.mesh.numberofvertices ,)) - 0.523 md.mask.groundedice_levelset = np.zeros((md.mesh.numberofvertices)) - 0.5 26 24 27 25 #materials 28 md.initialization.temperature = (273. - 20.) * np.ones((md.mesh.numberofvertices ,))26 md.initialization.temperature = (273. - 20.) * np.ones((md.mesh.numberofvertices)) 29 27 md.materials.rheology_B = paterson(md.initialization.temperature) 30 md.materials.rheology_n = 3. * np.ones((md.mesh.numberofelements ,))28 md.materials.rheology_n = 3. * np.ones((md.mesh.numberofelements)) 31 29 32 30 #friction 33 md.friction.coefficient = np.zeros((md.mesh.numberofvertices ,))31 md.friction.coefficient = np.zeros((md.mesh.numberofvertices)) 34 32 md.friction.coefficient[np.where(md.mesh.vertexflags(1))] = 20. 35 md.friction.p = np.ones((md.mesh.numberofelements ,))36 md.friction.q = np.ones((md.mesh.numberofelements ,))33 md.friction.p = np.ones((md.mesh.numberofelements)) 34 md.friction.q = np.ones((md.mesh.numberofelements)) 37 35 38 36 #Boundary conditions … … 47 45 48 46 #Misc 49 print(isinstance(md, model))50 print(type(md))51 47 md = setflowequation(md, 'FS', 'all') 52 48 md.stressbalance.abstol = np.nan … … 67 63 for i in ['MINI', 'MINIcondensed', 'TaylorHood', 'LATaylorHood', 'CrouzeixRaviart', 'LACrouzeixRaviart']: 68 64 print(' ') 69 print(' == == == Testing ' + i + ' Full - Stokes Finite element == == =')65 print('=====Testing ' + i + ' Full-Stokes Finite element=====') 70 66 md.flowequation.fe_FS = i 71 67 md = solve(md, 'Stressbalance')
Note:
See TracChangeset
for help on using the changeset viewer.