MCPcopy Create free account
hub / github.com/DedalusProject/dedalus / TensorField

Function TensorField

dedalus/core/field.py:995–1000  ·  view source on GitHub ↗
(dist, coordsys, *args, order=2, **kw)

Source from the content-addressed store, hash-verified

993
994
995def TensorField(dist, coordsys, *args, order=2, **kw):
996 if isinstance(coordsys, (tuple, list)):
997 tensorsig = coordsys
998 else:
999 tensorsig = (coordsys,) * order
1000 return Field(dist, *args, tensorsig=tensorsig, **kw)
1001
1002
1003class LockedField(Field):

Callers 2

TensorFieldMethod · 0.70
IdentityTensorMethod · 0.70

Calls 1

FieldClass · 0.85

Tested by

no test coverage detected