First time here? Check our help page!
1

EMS actuator override of mass flow rate and temperature provide strange behaviour.

Dear,

I'm developing new Reinforcement Learning Control Strategies and I'm using E+ as a test bed for the algorithms. I managed to use only

EnergyManagementSystem:Actuator,
    t_in_air,                !- Name
    VAV SYS 1 OUTLET NODE,   !- Actuated Component Unique Name
    System Node Setpoint,    !- Actuated Component Type
    Temperature Setpoint;    !- Actuated Component Control Type

as an actuator to optimize the Energy Consumption in the building by varying the temperature. Since I will like to give more control actions I have started to use the mass flow rate and I have created the following actuator:

EnergyManagementSystem:Actuator,
    mdot_fan,                !- Name
    SUPPLY FAN 1,            !- Actuated Component Unique Name
    Fan,                     !- Actuated Component Type
    Fan Air mass Flow Rate;  !- Actuated Component Control Type

Using the ExternalInterface:Variable, EnergyManagementSystem:ProgramCallingManager and EnergyManagementSystem:ProgramI pass and set my control actions:

EnergyManagementSystem:ProgramCallingManager,
    act_calls1,              !- Name
    InsideHVACSystemIterationLoop,  !- EnergyPlus Model Calling Point
    Act;                     !- Program Name 1

EnergyManagementSystem:Program,
   Act,                     !- Name
   SET t_in_air = tair,     !- Program Line 1
   SET mdot_fan = mdot;     !- Program Line 2

ExternalInterface:Variable,
    mdot,                    !- Name
    1;                       !- Initial Value

ExternalInterface:Variable,
    tair,                    !- Name
    1;                       !- Initial Value

I have tried with both AirTerminal:SingleDuct:ConstantVolume:NoReheat and AirTerminal:SingleDuct:VAV:Reheat.

With AirTerminal:SingleDuct:ConstantVolume:NoReheat the RL algorithm discovers a strange behaviour of E+ that makes the temperature to follow the E+ base line in blue but the HVAC consumption is almost 0

image description

With AirTerminal:SingleDuct:VAV:Reheat the VAV SYS 1 OUTLET NODE it does not flow the controls that I pass to E+ (in green what E+ does in red what I wanted to do).

image description

At the links you find the zips with the IDF, the control_actions and the E+ output for both cases.

https://www.dropbox.com/s/ektupyzrxaq...

https://www.dropbox.com/s/ev9ofl1wptp...

lobo's avatar
41
lobo
asked 2022-03-03 07:42:57 -0500
edit flag offensive 0 remove flag close merge delete

Comments

Have you looked at the .edd file?

bonnema's avatar bonnema (2022-03-03 10:41:54 -0500) edit
add a comment see more comments

1 Answer

0
MJWitte's avatar
9.7k
MJWitte
answered 2023-07-12 11:27:53 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments