Lesson 2: Creating an engine

To perform QPLEX calculations you must first import the appropriate engine. A list of available engines may be found here.

This tutorial uses the StandardMultiserver engine. You import this engine as follows:

from qplex import StandardMultiserver

To create an instance of this engine, call its constructor:

engine = StandardMultiserver()

Here is the complete code so far:

from qplex import StandardMultiserver

engine = StandardMultiserver()