snake.core.simulation
#
SImulation base objects.
Module Contents#
Classes#
Gradient Recall Echo Sequence parameters. |
|
Scanner Hardware parameters. |
|
All base configuration of a simulation. |
Functions#
Recursive HTML representation for dataclasses. |
Data#
API#
- snake.core.simulation._repr_html_(obj: Any, vertical: bool = True) str [source]#
Recursive HTML representation for dataclasses.
This function generates an HTML table representation of a dataclass, including nested dataclasses.
- Parameters:
obj (The dataclass instance.)
- Returns:
str
- Return type:
An HTML table string representing the dataclass.
- class snake.core.simulation.GreConfig[source]#
Gradient Recall Echo Sequence parameters.
- _repr_html_ = None#
- class snake.core.simulation.HardwareConfig[source]#
Scanner Hardware parameters.
- _repr_html_ = None#
- snake.core.simulation.default_hardware = 'HardwareConfig(...)'#
- snake.core.simulation.default_gre = 'GreConfig(...)'#
- class snake.core.simulation.SimConfig[source]#
All base configuration of a simulation.
- seq: snake.core.simulation.GreConfig = 'field(...)'#
- hardware: snake.core.simulation.HardwareConfig = 'field(...)'#
- _repr_html_ = None#