pychum.engine.orca._dataclasses¶
Classes¶
Create a collection of name/value pairs. |
|
Helper class that provides a standard way to create an ABC using |
|
Helper class that provides a standard way to create an ABC using |
|
Helper class that provides a standard way to create an ABC using |
|
Module Contents¶
- class pychum.engine.orca._dataclasses.BlockType[source]¶
Bases:
enum.EnumCreate a collection of name/value pairs.
Example enumeration:
>>> class Color(Enum): ... RED = 1 ... BLUE = 2 ... GREEN = 3
Access them by:
attribute access:
>>> Color.RED <Color.RED: 1>
value lookup:
>>> Color(1) <Color.RED: 1>
name lookup:
>>> Color['RED'] <Color.RED: 1>
Enumerations can be iterated over, and know how many members they have:
>>> len(Color) 3
>>> list(Color) [<Color.RED: 1>, <Color.BLUE: 2>, <Color.GREEN: 3>]
Methods can be added to enumerations, and members can have their own attributes – see the documentation for details.
- class pychum.engine.orca._dataclasses.OrcaBlock[source]¶
Bases:
abc.ABCHelper class that provides a standard way to create an ABC using inheritance.
- class pychum.engine.orca._dataclasses.GeomBlock[source]¶
Bases:
OrcaBlockHelper class that provides a standard way to create an ABC using inheritance.
- class pychum.engine.orca._dataclasses.NebBlock[source]¶
Bases:
OrcaBlockHelper class that provides a standard way to create an ABC using inheritance.
- lbfgs_settings: LBFGSSettings[source]¶
- fire_settings: FIRESettings[source]¶
- reparam_settings: ReparamSettings[source]¶
- idpp_settings: IDPPSettings[source]¶
- zoom_settings: ZoomSettings[source]¶
- optim_settings: OptimSettings[source]¶
- convtol_settings: ConvTolSettings[source]¶
- free_end_settings: FreeEndSettings[source]¶
- spring_settings: SpringSettings[source]¶
- restart_settings: RestartSettings[source]¶
- tsguess_settings: TSGuessSettings[source]¶
- fix_center_settings: FixCenterSettings[source]¶