Control

This module contains the function that control the operating conditions of the MEA system.

control_operating_conditions(t, solver_variables, operating_inputs, parameters, control_variables)

This function controls the operating conditions of the MEA system, if required. It is currently in construction.

Parameters:
  • t (float) –

    Time (s).

  • solver_variables (dict) –

    Dictionary containing the solver variables.

  • operating_inputs (dict) –

    Dictionary containing the operating inputs.

  • parameters (dict) –

    Dictionary containing the parameters.

  • control_variables (dict) –

    Dictionary containing the control variables.

Source code in model/control.py
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
def control_operating_conditions(t, solver_variables, operating_inputs, parameters, control_variables):
    """This function controls the operating conditions of the MEA system, if required.
    It is currently in construction.

    Parameters
    ----------
    t : float
        Time (s).
    solver_variables : dict
        Dictionary containing the solver variables.
    operating_inputs : dict
        Dictionary containing the operating inputs.
    parameters : dict
        Dictionary containing the parameters.
    control_variables : dict
        Dictionary containing the control variables.
    """

    pass