Parsers

On this page, the parsers object used to load AUTO data stored in files are presented.

Config object module

We describe here the module used to configure AUTO and auto-AUTO.

Configuration object definition

This module defines the configuration object used in auto-AUTO.

class auto2.parsers.config.ConfigParser(config_file)[source]

Bases: object

An object to load and parse AUTO configuration files.

Parameters:

config_file (str) – Path to the AUTO config file.

config_path

Path to the AUTO config file.

Type:

str

config_object

The native AUTO configuration Python object.

Type:

AUTO Configuration object

property continuation_parameters

Parameters used by default for continuation.

Type:

list(str)

property ndim

Dimension of the dynamical system.

Type:

int

property parameters

List the names of the available continuations parameters.

Type:

list(str)

property parameters_bounds

List of user defined parameters bound values.

Type:

list

property parameters_dict

Dictionary of the names of the variables of the dynamical system, indexed by their AUTO number.

Type:

dict(str)

property parameters_solution_points

List of user defined points parameters values.

Type:

list

property parnames

Link to AUTO parnames structure.

Type:

list

property unames

Link to AUTO unames structure.

Type:

list

property variables

List the names of the variables of the dynamical system.

Type:

list(str)

property variables_dict

Dictionary of the names of the variables of the dynamical system, indexed by their AUTO number.

Type:

dict(str)