Ignore:
Timestamp:
04/16/20 02:44:38 (5 years ago)
Author:
bdef
Message:

NEW:Finishing implementation of substeps fro 3D

File:
1 edited

Legend:

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

    r24261 r24711  
    1313md = bamgflowband(model(), x, b + h, b, 'hmax', 80.)
    1414
    15 print(isinstance(md, model))
    16 
    1715#Geometry  #interp1d returns a function to be called on md.mesh.x
    1816md.geometry.surface = np.interp(md.mesh.x, x, b + h)
     
    2119
    2220#mask
    23 md.mask.ice_levelset = -np.ones((md.mesh.numberofvertices, ))
     21md.mask.ice_levelset = -np.ones((md.mesh.numberofvertices))
    2422md.mask.ice_levelset[np.where(md.mesh.vertexflags(2))] = 0.
    25 md.mask.groundedice_levelset = np.zeros((md.mesh.numberofvertices, )) - 0.5
     23md.mask.groundedice_levelset = np.zeros((md.mesh.numberofvertices)) - 0.5
    2624
    2725#materials
    28 md.initialization.temperature = (273. - 20.) * np.ones((md.mesh.numberofvertices, ))
     26md.initialization.temperature = (273. - 20.) * np.ones((md.mesh.numberofvertices))
    2927md.materials.rheology_B = paterson(md.initialization.temperature)
    30 md.materials.rheology_n = 3. * np.ones((md.mesh.numberofelements, ))
     28md.materials.rheology_n = 3. * np.ones((md.mesh.numberofelements))
    3129
    3230#friction
    33 md.friction.coefficient = np.zeros((md.mesh.numberofvertices, ))
     31md.friction.coefficient = np.zeros((md.mesh.numberofvertices))
    3432md.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, ))
     33md.friction.p = np.ones((md.mesh.numberofelements))
     34md.friction.q = np.ones((md.mesh.numberofelements))
    3735
    3836#Boundary conditions
     
    4745
    4846#Misc
    49 print(isinstance(md, model))
    50 print(type(md))
    5147md = setflowequation(md, 'FS', 'all')
    5248md.stressbalance.abstol = np.nan
     
    6763for i in ['MINI', 'MINIcondensed', 'TaylorHood', 'LATaylorHood', 'CrouzeixRaviart', 'LACrouzeixRaviart']:
    6864    print(' ')
    69     print(' == == == Testing ' + i + ' Full - Stokes Finite element == == = ')
     65    print('=====Testing ' + i + ' Full-Stokes Finite element=====')
    7066    md.flowequation.fe_FS = i
    7167    md = solve(md, 'Stressbalance')
Note: See TracChangeset for help on using the changeset viewer.