SimPEG.fields.Fields.aliasFields#

property Fields.aliasFields#

The aliased fields of this object.

The dictionary representing the aliased fields that can be accessed on this object. The keys are the names of the fields, and the values are a list of the known field, the aliased field’s location on the mesh, and a function that goes from the known field to the aliased field.

>>> fields.aliasFields
{'b': ['e', 'F', '_e']}

Would represent that the e field and phi fields are known, and they are located on the mesh edges and cell centers, respectively.

Returns:
dict of {str: list}

They keys are the field names and the values are list consiting of the field’s alias, it’s location on the mesh, and the function (or the name of it) to create it from the aliased field.