yt.frontends.chombo.fields module

class yt.frontends.chombo.fields.ChomboFieldInfo(ds, field_list: list[tuple[str, str]], slice_info=None)[source]

Bases: FieldInfoContainer

add_deprecated_field(name, function, sampling_type, since, removal=None, ret_name=None, **kwargs)

Add a new field which is deprecated, along with supplemental metadata, to the list of available fields. This respects a number of arguments, all of which are passed on to the constructor for DerivedField.

Parameters:
  • name (str) – is the name of the field.

  • function (callable) – A function handle that defines the field. Should accept arguments (field, data)

  • sampling_type (str) – “cell” or “particle” or “local”

  • since (str) – The version string marking when this field was deprecated.

  • removal (str) – The version string marking when this field will be removed.

  • ret_name (str) – The name of the field which will actually be returned, used only by alias().

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • take_log (bool) – Describes whether the field should be logged

  • validators (list) – A list of FieldValidator objects

  • vector_field (bool) – Describes the dimensionality of the field. Currently unused.

  • display_name (str) – A name used in the plots

add_field(name: tuple[str, str], function: Callable, sampling_type: str, *, alias: DerivedField | None = None, force_override: bool = False, **kwargs) None

Add a new field, along with supplemental metadata, to the list of available fields. This respects a number of arguments, all of which are passed on to the constructor for DerivedField.

Parameters:
  • name (tuple[str, str]) – field (or particle) type, field name

  • function (callable) – A function handle that defines the field. Should accept arguments (field, data)

  • sampling_type (str) – “cell” or “particle” or “local”

  • force_override (bool) – If False (default), an error will be raised if a field of the same name already exists.

  • alias (DerivedField (optional):) – existing field to be aliased

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • take_log (bool) – Describes whether the field should be logged

  • validators (list) – A list of FieldValidator objects

  • vector_field (bool) – Describes the dimensionality of the field. Currently unused.

  • display_name (str) – A name used in the plots

add_output_field(name, sampling_type, **kwargs)
alias(alias_name: tuple[str, str], original_name: tuple[str, str], units: str | None = None, deprecate: tuple[str, str | None] | None = None)

Alias one field to another field.

Parameters:
  • alias_name (tuple[str, str]) – The new field name.

  • original_name (tuple[str, str]) – The field to be aliased.

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • deprecate (tuple[str, str | None] | None) – If this is set, then the tuple contains two string version numbers: the first marking the version when the field was deprecated, and the second marking when the field will be removed.

check_derived_fields(fields_to_check=None)
clear() None.  Remove all items from D.
copy()
classmethod create_with_fallback(fallback, name='')
property curvilinear: bool
extra_union_fields: tuple[FieldKey, ...] = ()
fallback = None
find_dependencies(loaded)
classmethod fromkeys(iterable, value=None)
get(k[, d]) D[k] if k in D, else d.  d defaults to None.
has_key(key)
items() a set-like object providing a view on D's items
keys() a set-like object providing a view on D's keys
known_other_fields: KnownFieldsT = ()
known_particle_fields: KnownFieldsT = ()
load_all_plugins(ftype: str | None = 'gas') None
load_plugin(plugin_name: str, ftype: str = 'gas', skip_check: bool = False)
pop(k[, d]) v, remove specified key and return the corresponding value.

If key is not found, d is returned if given, otherwise KeyError is raised.

popitem() (k, v), remove and return some (key, value) pair

as a 2-tuple; but raise KeyError if D is empty.

setdefault(k[, d]) D.get(k,d), also set D[k]=d if k not in D
setup_extra_union_fields(ptype='all')
setup_fluid_aliases(ftype: str = 'gas') None
setup_fluid_fields()
setup_fluid_index_fields()
setup_particle_fields(ptype, ftype='gas', num_neighbors=64)
setup_smoothed_fields(ptype, num_neighbors=64, ftype='gas')
update([E, ]**F) None.  Update D from mapping/iterable E and F.

If E present and has a .keys() method, does: for k in E: D[k] = E[k] If E present and lacks .keys() method, does: for (k, v) in E: D[k] = v In either case, this is followed by: for k, v in F.items(): D[k] = v

values() an object providing a view on D's values
class yt.frontends.chombo.fields.ChomboPICFieldInfo1D(ds, field_list)[source]

Bases: ChomboPICFieldInfo3D

add_deprecated_field(name, function, sampling_type, since, removal=None, ret_name=None, **kwargs)

Add a new field which is deprecated, along with supplemental metadata, to the list of available fields. This respects a number of arguments, all of which are passed on to the constructor for DerivedField.

Parameters:
  • name (str) – is the name of the field.

  • function (callable) – A function handle that defines the field. Should accept arguments (field, data)

  • sampling_type (str) – “cell” or “particle” or “local”

  • since (str) – The version string marking when this field was deprecated.

  • removal (str) – The version string marking when this field will be removed.

  • ret_name (str) – The name of the field which will actually be returned, used only by alias().

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • take_log (bool) – Describes whether the field should be logged

  • validators (list) – A list of FieldValidator objects

  • vector_field (bool) – Describes the dimensionality of the field. Currently unused.

  • display_name (str) – A name used in the plots

add_field(name: tuple[str, str], function: Callable, sampling_type: str, *, alias: DerivedField | None = None, force_override: bool = False, **kwargs) None

Add a new field, along with supplemental metadata, to the list of available fields. This respects a number of arguments, all of which are passed on to the constructor for DerivedField.

Parameters:
  • name (tuple[str, str]) – field (or particle) type, field name

  • function (callable) – A function handle that defines the field. Should accept arguments (field, data)

  • sampling_type (str) – “cell” or “particle” or “local”

  • force_override (bool) – If False (default), an error will be raised if a field of the same name already exists.

  • alias (DerivedField (optional):) – existing field to be aliased

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • take_log (bool) – Describes whether the field should be logged

  • validators (list) – A list of FieldValidator objects

  • vector_field (bool) – Describes the dimensionality of the field. Currently unused.

  • display_name (str) – A name used in the plots

add_output_field(name, sampling_type, **kwargs)
alias(alias_name: tuple[str, str], original_name: tuple[str, str], units: str | None = None, deprecate: tuple[str, str | None] | None = None)

Alias one field to another field.

Parameters:
  • alias_name (tuple[str, str]) – The new field name.

  • original_name (tuple[str, str]) – The field to be aliased.

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • deprecate (tuple[str, str | None] | None) – If this is set, then the tuple contains two string version numbers: the first marking the version when the field was deprecated, and the second marking when the field will be removed.

check_derived_fields(fields_to_check=None)
clear() None.  Remove all items from D.
copy()
classmethod create_with_fallback(fallback, name='')
property curvilinear: bool
extra_union_fields: tuple[FieldKey, ...] = ()
fallback = None
find_dependencies(loaded)
classmethod fromkeys(iterable, value=None)
get(k[, d]) D[k] if k in D, else d.  d defaults to None.
has_key(key)
items() a set-like object providing a view on D's items
keys() a set-like object providing a view on D's keys
known_other_fields: tuple[tuple[str, tuple[str, list[str], str | None]], ...] = (('density', ('code_mass / code_length**3', ['density', 'Density'], None)), ('potential', ('code_length**2 / code_time**2', ['potential', 'Potential'], None)), ('gravitational_field_x', ('code_length / code_time**2', [], None)))
known_particle_fields: tuple[tuple[str, tuple[str, list[str], str | None]], ...] = (('particle_mass', ('code_mass', [], None)), ('particle_position_x', ('code_length', [], None)), ('particle_velocity_x', ('code_length / code_time', [], None)))
load_all_plugins(ftype: str | None = 'gas') None
load_plugin(plugin_name: str, ftype: str = 'gas', skip_check: bool = False)
pop(k[, d]) v, remove specified key and return the corresponding value.

If key is not found, d is returned if given, otherwise KeyError is raised.

popitem() (k, v), remove and return some (key, value) pair

as a 2-tuple; but raise KeyError if D is empty.

setdefault(k[, d]) D.get(k,d), also set D[k]=d if k not in D
setup_extra_union_fields(ptype='all')
setup_fluid_aliases(ftype: str = 'gas') None
setup_fluid_fields()
setup_fluid_index_fields()
setup_particle_fields(ptype, ftype='gas', num_neighbors=64)
setup_smoothed_fields(ptype, num_neighbors=64, ftype='gas')
update([E, ]**F) None.  Update D from mapping/iterable E and F.

If E present and has a .keys() method, does: for k in E: D[k] = E[k] If E present and lacks .keys() method, does: for (k, v) in E: D[k] = v In either case, this is followed by: for k, v in F.items(): D[k] = v

values() an object providing a view on D's values
class yt.frontends.chombo.fields.ChomboPICFieldInfo2D(ds, field_list)[source]

Bases: ChomboPICFieldInfo3D

add_deprecated_field(name, function, sampling_type, since, removal=None, ret_name=None, **kwargs)

Add a new field which is deprecated, along with supplemental metadata, to the list of available fields. This respects a number of arguments, all of which are passed on to the constructor for DerivedField.

Parameters:
  • name (str) – is the name of the field.

  • function (callable) – A function handle that defines the field. Should accept arguments (field, data)

  • sampling_type (str) – “cell” or “particle” or “local”

  • since (str) – The version string marking when this field was deprecated.

  • removal (str) – The version string marking when this field will be removed.

  • ret_name (str) – The name of the field which will actually be returned, used only by alias().

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • take_log (bool) – Describes whether the field should be logged

  • validators (list) – A list of FieldValidator objects

  • vector_field (bool) – Describes the dimensionality of the field. Currently unused.

  • display_name (str) – A name used in the plots

add_field(name: tuple[str, str], function: Callable, sampling_type: str, *, alias: DerivedField | None = None, force_override: bool = False, **kwargs) None

Add a new field, along with supplemental metadata, to the list of available fields. This respects a number of arguments, all of which are passed on to the constructor for DerivedField.

Parameters:
  • name (tuple[str, str]) – field (or particle) type, field name

  • function (callable) – A function handle that defines the field. Should accept arguments (field, data)

  • sampling_type (str) – “cell” or “particle” or “local”

  • force_override (bool) – If False (default), an error will be raised if a field of the same name already exists.

  • alias (DerivedField (optional):) – existing field to be aliased

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • take_log (bool) – Describes whether the field should be logged

  • validators (list) – A list of FieldValidator objects

  • vector_field (bool) – Describes the dimensionality of the field. Currently unused.

  • display_name (str) – A name used in the plots

add_output_field(name, sampling_type, **kwargs)
alias(alias_name: tuple[str, str], original_name: tuple[str, str], units: str | None = None, deprecate: tuple[str, str | None] | None = None)

Alias one field to another field.

Parameters:
  • alias_name (tuple[str, str]) – The new field name.

  • original_name (tuple[str, str]) – The field to be aliased.

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • deprecate (tuple[str, str | None] | None) – If this is set, then the tuple contains two string version numbers: the first marking the version when the field was deprecated, and the second marking when the field will be removed.

check_derived_fields(fields_to_check=None)
clear() None.  Remove all items from D.
copy()
classmethod create_with_fallback(fallback, name='')
property curvilinear: bool
extra_union_fields: tuple[FieldKey, ...] = ()
fallback = None
find_dependencies(loaded)
classmethod fromkeys(iterable, value=None)
get(k[, d]) D[k] if k in D, else d.  d defaults to None.
has_key(key)
items() a set-like object providing a view on D's items
keys() a set-like object providing a view on D's keys
known_other_fields: tuple[tuple[str, tuple[str, list[str], str | None]], ...] = (('density', ('code_mass / code_length**3', ['density', 'Density'], None)), ('potential', ('code_length**2 / code_time**2', ['potential', 'Potential'], None)), ('gravitational_field_x', ('code_length / code_time**2', [], None)), ('gravitational_field_y', ('code_length / code_time**2', [], None)))
known_particle_fields: tuple[tuple[str, tuple[str, list[str], str | None]], ...] = (('particle_mass', ('code_mass', [], None)), ('particle_position_x', ('code_length', [], None)), ('particle_position_y', ('code_length', [], None)), ('particle_velocity_x', ('code_length / code_time', [], None)), ('particle_velocity_y', ('code_length / code_time', [], None)))
load_all_plugins(ftype: str | None = 'gas') None
load_plugin(plugin_name: str, ftype: str = 'gas', skip_check: bool = False)
pop(k[, d]) v, remove specified key and return the corresponding value.

If key is not found, d is returned if given, otherwise KeyError is raised.

popitem() (k, v), remove and return some (key, value) pair

as a 2-tuple; but raise KeyError if D is empty.

setdefault(k[, d]) D.get(k,d), also set D[k]=d if k not in D
setup_extra_union_fields(ptype='all')
setup_fluid_aliases(ftype: str = 'gas') None
setup_fluid_fields()
setup_fluid_index_fields()
setup_particle_fields(ptype, ftype='gas', num_neighbors=64)
setup_smoothed_fields(ptype, num_neighbors=64, ftype='gas')
update([E, ]**F) None.  Update D from mapping/iterable E and F.

If E present and has a .keys() method, does: for k in E: D[k] = E[k] If E present and lacks .keys() method, does: for (k, v) in E: D[k] = v In either case, this is followed by: for k, v in F.items(): D[k] = v

values() an object providing a view on D's values
class yt.frontends.chombo.fields.ChomboPICFieldInfo3D(ds, field_list: list[tuple[str, str]], slice_info=None)[source]

Bases: FieldInfoContainer

add_deprecated_field(name, function, sampling_type, since, removal=None, ret_name=None, **kwargs)

Add a new field which is deprecated, along with supplemental metadata, to the list of available fields. This respects a number of arguments, all of which are passed on to the constructor for DerivedField.

Parameters:
  • name (str) – is the name of the field.

  • function (callable) – A function handle that defines the field. Should accept arguments (field, data)

  • sampling_type (str) – “cell” or “particle” or “local”

  • since (str) – The version string marking when this field was deprecated.

  • removal (str) – The version string marking when this field will be removed.

  • ret_name (str) – The name of the field which will actually be returned, used only by alias().

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • take_log (bool) – Describes whether the field should be logged

  • validators (list) – A list of FieldValidator objects

  • vector_field (bool) – Describes the dimensionality of the field. Currently unused.

  • display_name (str) – A name used in the plots

add_field(name: tuple[str, str], function: Callable, sampling_type: str, *, alias: DerivedField | None = None, force_override: bool = False, **kwargs) None

Add a new field, along with supplemental metadata, to the list of available fields. This respects a number of arguments, all of which are passed on to the constructor for DerivedField.

Parameters:
  • name (tuple[str, str]) – field (or particle) type, field name

  • function (callable) – A function handle that defines the field. Should accept arguments (field, data)

  • sampling_type (str) – “cell” or “particle” or “local”

  • force_override (bool) – If False (default), an error will be raised if a field of the same name already exists.

  • alias (DerivedField (optional):) – existing field to be aliased

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • take_log (bool) – Describes whether the field should be logged

  • validators (list) – A list of FieldValidator objects

  • vector_field (bool) – Describes the dimensionality of the field. Currently unused.

  • display_name (str) – A name used in the plots

add_output_field(name, sampling_type, **kwargs)
alias(alias_name: tuple[str, str], original_name: tuple[str, str], units: str | None = None, deprecate: tuple[str, str | None] | None = None)

Alias one field to another field.

Parameters:
  • alias_name (tuple[str, str]) – The new field name.

  • original_name (tuple[str, str]) – The field to be aliased.

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • deprecate (tuple[str, str | None] | None) – If this is set, then the tuple contains two string version numbers: the first marking the version when the field was deprecated, and the second marking when the field will be removed.

check_derived_fields(fields_to_check=None)
clear() None.  Remove all items from D.
copy()
classmethod create_with_fallback(fallback, name='')
property curvilinear: bool
extra_union_fields: tuple[FieldKey, ...] = ()
fallback = None
find_dependencies(loaded)
classmethod fromkeys(iterable, value=None)
get(k[, d]) D[k] if k in D, else d.  d defaults to None.
has_key(key)
items() a set-like object providing a view on D's items
keys() a set-like object providing a view on D's keys
known_other_fields: tuple[tuple[str, tuple[str, list[str], str | None]], ...] = (('density', ('code_mass / code_length**3', ['density', 'Density'], None)), ('potential', ('code_length**2 / code_time**2', ['potential', 'Potential'], None)), ('gravitational_field_x', ('code_length / code_time**2', [], None)), ('gravitational_field_y', ('code_length / code_time**2', [], None)), ('gravitational_field_z', ('code_length / code_time**2', [], None)))
known_particle_fields: tuple[tuple[str, tuple[str, list[str], str | None]], ...] = (('particle_mass', ('code_mass', [], None)), ('particle_position_x', ('code_length', [], None)), ('particle_position_y', ('code_length', [], None)), ('particle_position_z', ('code_length', [], None)), ('particle_velocity_x', ('code_length / code_time', [], None)), ('particle_velocity_y', ('code_length / code_time', [], None)), ('particle_velocity_z', ('code_length / code_time', [], None)))
load_all_plugins(ftype: str | None = 'gas') None
load_plugin(plugin_name: str, ftype: str = 'gas', skip_check: bool = False)
pop(k[, d]) v, remove specified key and return the corresponding value.

If key is not found, d is returned if given, otherwise KeyError is raised.

popitem() (k, v), remove and return some (key, value) pair

as a 2-tuple; but raise KeyError if D is empty.

setdefault(k[, d]) D.get(k,d), also set D[k]=d if k not in D
setup_extra_union_fields(ptype='all')
setup_fluid_aliases(ftype: str = 'gas') None
setup_fluid_fields()
setup_fluid_index_fields()
setup_particle_fields(ptype, ftype='gas', num_neighbors=64)[source]
setup_smoothed_fields(ptype, num_neighbors=64, ftype='gas')
update([E, ]**F) None.  Update D from mapping/iterable E and F.

If E present and has a .keys() method, does: for k in E: D[k] = E[k] If E present and lacks .keys() method, does: for (k, v) in E: D[k] = v In either case, this is followed by: for k, v in F.items(): D[k] = v

values() an object providing a view on D's values
class yt.frontends.chombo.fields.Orion2FieldInfo(ds, field_list: list[tuple[str, str]], slice_info=None)[source]

Bases: ChomboFieldInfo

add_deprecated_field(name, function, sampling_type, since, removal=None, ret_name=None, **kwargs)

Add a new field which is deprecated, along with supplemental metadata, to the list of available fields. This respects a number of arguments, all of which are passed on to the constructor for DerivedField.

Parameters:
  • name (str) – is the name of the field.

  • function (callable) – A function handle that defines the field. Should accept arguments (field, data)

  • sampling_type (str) – “cell” or “particle” or “local”

  • since (str) – The version string marking when this field was deprecated.

  • removal (str) – The version string marking when this field will be removed.

  • ret_name (str) – The name of the field which will actually be returned, used only by alias().

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • take_log (bool) – Describes whether the field should be logged

  • validators (list) – A list of FieldValidator objects

  • vector_field (bool) – Describes the dimensionality of the field. Currently unused.

  • display_name (str) – A name used in the plots

add_field(name: tuple[str, str], function: Callable, sampling_type: str, *, alias: DerivedField | None = None, force_override: bool = False, **kwargs) None

Add a new field, along with supplemental metadata, to the list of available fields. This respects a number of arguments, all of which are passed on to the constructor for DerivedField.

Parameters:
  • name (tuple[str, str]) – field (or particle) type, field name

  • function (callable) – A function handle that defines the field. Should accept arguments (field, data)

  • sampling_type (str) – “cell” or “particle” or “local”

  • force_override (bool) – If False (default), an error will be raised if a field of the same name already exists.

  • alias (DerivedField (optional):) – existing field to be aliased

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • take_log (bool) – Describes whether the field should be logged

  • validators (list) – A list of FieldValidator objects

  • vector_field (bool) – Describes the dimensionality of the field. Currently unused.

  • display_name (str) – A name used in the plots

add_output_field(name, sampling_type, **kwargs)
alias(alias_name: tuple[str, str], original_name: tuple[str, str], units: str | None = None, deprecate: tuple[str, str | None] | None = None)

Alias one field to another field.

Parameters:
  • alias_name (tuple[str, str]) – The new field name.

  • original_name (tuple[str, str]) – The field to be aliased.

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • deprecate (tuple[str, str | None] | None) – If this is set, then the tuple contains two string version numbers: the first marking the version when the field was deprecated, and the second marking when the field will be removed.

check_derived_fields(fields_to_check=None)
clear() None.  Remove all items from D.
copy()
classmethod create_with_fallback(fallback, name='')
property curvilinear: bool
extra_union_fields: tuple[FieldKey, ...] = ()
fallback = None
field_aliases: dict[FieldKey, FieldKey]
find_dependencies(loaded)
classmethod fromkeys(iterable, value=None)
get(k[, d]) D[k] if k in D, else d.  d defaults to None.
has_key(key)
items() a set-like object providing a view on D's items
keys() a set-like object providing a view on D's keys
known_other_fields: tuple[tuple[str, tuple[str, list[str], str | None]], ...] = (('density', ('code_mass / code_length**3', ['density'], None)), ('energy-density', ('code_mass / (code_time**2 * code_length)', ['total_energy_density'], None)), ('radiation-energy-density', ('code_mass / (code_time**2 * code_length)', ['radiation_energy_density'], None)), ('X-momentum', ('code_mass / (code_time * code_length**2)', ['momentum_density_x'], None)), ('Y-momentum', ('code_mass / (code_time * code_length**2)', ['momentum_density_y'], None)), ('Z-momentum', ('code_mass / (code_time * code_length**2)', ['momentum_density_z'], None)), ('temperature', ('K', ['temperature'], None)), ('X-magnfield', ('code_magnetic', [], None)), ('Y-magnfield', ('code_magnetic', [], None)), ('Z-magnfield', ('code_magnetic', [], None)), ('directrad-dedt-density', ('code_mass / (code_time**2 * code_length)', ['directrad-dedt-density'], None)), ('directrad-dpxdt-density', ('code_mass / (code_time * code_length**2)', ['directrad-dpxdt-density'], None)), ('directrad-dpydt-density', ('code_mass / (code_time * code_length**2)', ['directrad-dpydt-density'], None)), ('directrad-dpzdt-density', ('code_mass / (code_time * code_length**2)', ['directrad-dpzdt-density'], None)))
known_particle_fields: tuple[tuple[str, tuple[str, list[str], str | None]], ...] = (('particle_mass', ('code_mass', [], None)), ('particle_position_x', ('code_length', [], None)), ('particle_position_y', ('code_length', [], None)), ('particle_position_z', ('code_length', [], None)), ('particle_momentum_x', ('code_mass*code_length/code_time', [], None)), ('particle_momentum_y', ('code_mass*code_length/code_time', [], None)), ('particle_momentum_z', ('code_mass*code_length/code_time', [], None)), ('particle_angmomen_x', ('code_length**2/code_time', [], None)), ('particle_angmomen_y', ('code_length**2/code_time', [], None)), ('particle_angmomen_z', ('code_length**2/code_time', [], None)), ('particle_mlast', ('code_mass', [], None)), ('particle_r', ('code_length', [], None)), ('particle_mdeut', ('code_mass', [], None)), ('particle_n', ('', [], None)), ('particle_mdot', ('code_mass/code_time', [], None)), ('particle_burnstate', ('', [], None)), ('particle_luminosity', ('', [], None)), ('particle_id', ('', ['particle_index'], None)))
load_all_plugins(ftype: str | None = 'gas') None
load_plugin(plugin_name: str, ftype: str = 'gas', skip_check: bool = False)
pop(k[, d]) v, remove specified key and return the corresponding value.

If key is not found, d is returned if given, otherwise KeyError is raised.

popitem() (k, v), remove and return some (key, value) pair

as a 2-tuple; but raise KeyError if D is empty.

setdefault(k[, d]) D.get(k,d), also set D[k]=d if k not in D
setup_extra_union_fields(ptype='all')
setup_fluid_aliases(ftype: str = 'gas') None
setup_fluid_fields()[source]
setup_fluid_index_fields()
setup_particle_fields(ptype)[source]
setup_smoothed_fields(ptype, num_neighbors=64, ftype='gas')
species_names: list[FieldName]
update([E, ]**F) None.  Update D from mapping/iterable E and F.

If E present and has a .keys() method, does: for k in E: D[k] = E[k] If E present and lacks .keys() method, does: for (k, v) in E: D[k] = v In either case, this is followed by: for k, v in F.items(): D[k] = v

values() an object providing a view on D's values
class yt.frontends.chombo.fields.PlutoFieldInfo(ds, field_list: list[tuple[str, str]], slice_info=None)[source]

Bases: ChomboFieldInfo

add_deprecated_field(name, function, sampling_type, since, removal=None, ret_name=None, **kwargs)

Add a new field which is deprecated, along with supplemental metadata, to the list of available fields. This respects a number of arguments, all of which are passed on to the constructor for DerivedField.

Parameters:
  • name (str) – is the name of the field.

  • function (callable) – A function handle that defines the field. Should accept arguments (field, data)

  • sampling_type (str) – “cell” or “particle” or “local”

  • since (str) – The version string marking when this field was deprecated.

  • removal (str) – The version string marking when this field will be removed.

  • ret_name (str) – The name of the field which will actually be returned, used only by alias().

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • take_log (bool) – Describes whether the field should be logged

  • validators (list) – A list of FieldValidator objects

  • vector_field (bool) – Describes the dimensionality of the field. Currently unused.

  • display_name (str) – A name used in the plots

add_field(name: tuple[str, str], function: Callable, sampling_type: str, *, alias: DerivedField | None = None, force_override: bool = False, **kwargs) None

Add a new field, along with supplemental metadata, to the list of available fields. This respects a number of arguments, all of which are passed on to the constructor for DerivedField.

Parameters:
  • name (tuple[str, str]) – field (or particle) type, field name

  • function (callable) – A function handle that defines the field. Should accept arguments (field, data)

  • sampling_type (str) – “cell” or “particle” or “local”

  • force_override (bool) – If False (default), an error will be raised if a field of the same name already exists.

  • alias (DerivedField (optional):) – existing field to be aliased

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • take_log (bool) – Describes whether the field should be logged

  • validators (list) – A list of FieldValidator objects

  • vector_field (bool) – Describes the dimensionality of the field. Currently unused.

  • display_name (str) – A name used in the plots

add_output_field(name, sampling_type, **kwargs)
alias(alias_name: tuple[str, str], original_name: tuple[str, str], units: str | None = None, deprecate: tuple[str, str | None] | None = None)

Alias one field to another field.

Parameters:
  • alias_name (tuple[str, str]) – The new field name.

  • original_name (tuple[str, str]) – The field to be aliased.

  • units (str) – A plain text string encoding the unit. Powers must be in python syntax (** instead of ^). If set to “auto” the units will be inferred from the return value of the field function.

  • deprecate (tuple[str, str | None] | None) – If this is set, then the tuple contains two string version numbers: the first marking the version when the field was deprecated, and the second marking when the field will be removed.

check_derived_fields(fields_to_check=None)
clear() None.  Remove all items from D.
copy()
classmethod create_with_fallback(fallback, name='')
property curvilinear: bool
extra_union_fields: tuple[FieldKey, ...] = ()
fallback = None
field_aliases: dict[FieldKey, FieldKey]
find_dependencies(loaded)
classmethod fromkeys(iterable, value=None)
get(k[, d]) D[k] if k in D, else d.  d defaults to None.
has_key(key)
items() a set-like object providing a view on D's items
keys() a set-like object providing a view on D's keys
known_other_fields: tuple[tuple[str, tuple[str, list[str], str | None]], ...] = (('rho', ('code_mass / code_length**3', ['density'], None)), ('prs', ('code_mass / (code_length * code_time**2)', ['pressure'], None)), ('vx1', ('code_length / code_time', ['velocity_x'], None)), ('vx2', ('code_length / code_time', ['velocity_y'], None)), ('vx3', ('code_length / code_time', ['velocity_z'], None)), ('bx1', ('code_magnetic', [], None)), ('bx2', ('code_magnetic', [], None)), ('bx3', ('code_magnetic', [], None)))
known_particle_fields: KnownFieldsT = ()
load_all_plugins(ftype: str | None = 'gas') None
load_plugin(plugin_name: str, ftype: str = 'gas', skip_check: bool = False)
pop(k[, d]) v, remove specified key and return the corresponding value.

If key is not found, d is returned if given, otherwise KeyError is raised.

popitem() (k, v), remove and return some (key, value) pair

as a 2-tuple; but raise KeyError if D is empty.

setdefault(k[, d]) D.get(k,d), also set D[k]=d if k not in D
setup_extra_union_fields(ptype='all')
setup_fluid_aliases(ftype: str = 'gas') None
setup_fluid_fields()[source]
setup_fluid_index_fields()
setup_particle_fields(ptype, ftype='gas', num_neighbors=64)
setup_smoothed_fields(ptype, num_neighbors=64, ftype='gas')
species_names: list[FieldName]
update([E, ]**F) None.  Update D from mapping/iterable E and F.

If E present and has a .keys() method, does: for k in E: D[k] = E[k] If E present and lacks .keys() method, does: for (k, v) in E: D[k] = v In either case, this is followed by: for k, v in F.items(): D[k] = v

values() an object providing a view on D's values