Skip to content

Commit

Permalink
Further minor clean-ups.
Browse files Browse the repository at this point in the history
  • Loading branch information
richardnies committed Sep 9, 2021
1 parent aefcc77 commit ad9f86d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Utilities/pythontools/py_spec/output/_processing.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import numpy as np


def get_grid_and_jacobian_and_metric(
self,
lvol=0,
Expand Down Expand Up @@ -164,6 +165,7 @@ def metric(
_, _, _, g = get_grid_and_jacobian_and_metric(self, lvol, sarr, tarr, zarr)
return g


def get_B(
self,
lvol=0,
Expand All @@ -175,6 +177,7 @@ def get_B(
Bcontra_and_der = get_B_and_der(self, lvol, jacobian, sarr, tarr, zarr)
return Bcontra_and_der[0:3]


def get_s_der_B(
self,
lvol=0,
Expand All @@ -186,6 +189,7 @@ def get_s_der_B(
Bcontra_and_der = get_B_and_der(self, lvol, jacobian, sarr, tarr, zarr)
return Bcontra_and_der[3:6]


def get_t_der_B(
self,
lvol=0,
Expand Down

0 comments on commit ad9f86d

Please sign in to comment.