Ignore:
Timestamp:
12/12/17 16:04:23 (7 years ago)
Author:
dubos
Message:

devel/Python : extract pure Python stuff from cython module unstructured.pyx

File:
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/devel/Python/test/py/slice_GW_NH.py

    r617 r631  
     1from dynamico.meshes import Cartesian_mesh as Mesh 
    12from dynamico import unstructured as unst 
    23from dynamico import dyn 
     
    9192Lx, nx, ztop, llm = 2e5, 400, 3e4, 60 
    9293nqdyn, ny, dx = 1, 1, Lx/nx 
    93 mesh = unst.Cartesian_mesh(nx,ny,llm,nqdyn,nx*dx,ny*dx,0.) 
     94mesh = Mesh(nx,ny,llm,nqdyn,nx*dx,ny*dx,0.) 
    9495xx,ll = mesh.xx[:,0,:]/1000, mesh.ll[:,0,:] 
    9596 
Note: See TracChangeset for help on using the changeset viewer.