Julia
If you are interested in more details on how to use IESopt.jl directly, please refer to it’s documentation.
Tip
The public API of the Python wrapper was, as far as possible, designed to be almost identical to the one of the Julia package, so things should look similar.
For example, the following Python code:
import iesopt
model = iesopt.generate("config.iesopt.yaml")
my_result = model.get_component("turbine").exp.out_water
can be translated to Julia like this:
import IESopt
model = IESopt.generate!("config.iesopt.yaml")
my_result = IESopt.get_component(model, "turbine").exp.out_water