Added Cyl1DMesh back in for depreciation purposes.

This commit is contained in:
rowanc1
2014-04-15 09:05:07 -07:00
parent da7bab60b2
commit bb1be7b96e
3 changed files with 485 additions and 0 deletions
+7
View File
@@ -9,6 +9,13 @@ from InnerProducts import InnerProducts
class CylMesh(BaseTensorMesh, InnerProducts):
"""
CylMesh is a mesh class for cylindrical problems
::
cs, nc, npad = 20., 30, 8
hx = Utils.meshTensors(((npad+10,cs,0.7), (nc,cs), (npad,cs)))
hz = Utils.meshTensors(((npad,cs), (nc,cs), (npad,cs)))
mesh = Mesh.CylMesh([hx,1,hz], [0.,0,-hz.sum()/2.])
"""
_meshType = 'CYL'