Skip to content
Snippets Groups Projects
Commit d2330d8d authored by bernuzzi's avatar bernuzzi
Browse files

Fixed Puncture class

parent 65ab9b2a
No related branches found
No related tags found
No related merge requests found
......@@ -69,9 +69,10 @@ class Puncture():
"""
Extrinsic cuvrvature $K_{ij}$
"""
x,y,z = self.CartGrid()
K = {}
for (i,j) in ij_indexes:
K[(i,j)] = 0.
K[(i,j)] = 0*x.
return K
def Output(self,fname):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment