Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EnergyPlus9.3.0 Issue #57

Open
rajeevraibhatia opened this issue Feb 26, 2021 · 1 comment
Open

EnergyPlus9.3.0 Issue #57

rajeevraibhatia opened this issue Feb 26, 2021 · 1 comment

Comments

@rajeevraibhatia
Copy link

I'm trying to run the code on my Mac with EPlus 9.3, but getting the below error. Any thoughts on how to resolve this?

Program terminated: EnergyPlus Terminated--Error(s) Detected.

Below is the output of the eplusout.err

Program Version,EnergyPlus, Version 9.3.0-Unknown, YMD=2021.02.26 00:25,
************* Beginning Zone Sizing Calculations
** Warning ** Weather file location will be used rather than entered (IDF) Location object.
** ~~~ ** ..Location object=CHICAGO_IL_USA TMY2-94846
** ~~~ ** ..Weather File Location=San Francisco Intl Ap CA USA TMY3 WMO#=724940
** ~~~ ** ..due to location differences, Latitude difference=[4.16] degrees, Longitude difference=[34.65] degrees.
** ~~~ ** ..Time Zone difference=[2.0] hour(s), Elevation difference=[98.95] percent, [188.00] meters.
** Warning ** Calculated design heating load for zone=WEST ZONE is zero.
** ~~~ ** Check Sizing:Zone and ZoneControl:Thermostat inputs.
** Warning ** Calculated design heating load for zone=EAST ZONE is zero.
** ~~~ ** Check Sizing:Zone and ZoneControl:Thermostat inputs.
************* Beginning System Sizing Calculations
** Warning ** ManageSizing: Calculated Heating Design Air Flow Rate for System=WEST ZONE AIR SYSTEM is zero.
** ~~~ ** Check Sizing:Zone and ZoneControl:Thermostat inputs.
** Warning ** ManageSizing: Calculated Heating Design Air Flow Rate for System=EAST ZONE AIR SYSTEM is zero.
** ~~~ ** Check Sizing:Zone and ZoneControl:Thermostat inputs.
************* Beginning Plant Sizing Calculations
************* Testing Individual Branch Integrity
************* All Branches passed integrity testing
************* Testing Individual Supply Air Path Integrity
************* All Supply Air Paths passed integrity testing
************* Testing Individual Return Air Path Integrity
************* All Return Air Paths passed integrity testing
************* No node connection errors were found.
************* Beginning Simulation
** Severe ** stoi: no conversion
************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.
************* EnergyPlus Sizing Error Summary. During Sizing: 5 Warning; 0 Severe Errors.
************* EnergyPlus Terminated--Fatal Error Detected. 5 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 1.05sec

@antoine-galataud
Copy link
Collaborator

You got this exception reported by EnergyPlus:

** Severe ** stoi: no conversion

stoi is used in EnergyPlus patch code:

+ int NumActsReceived = std::stoi(line);
)

It's used to transform the number of actions sent by the python part. See

def send_action(self):
num_data = len(self.ep_model.action)
if self.pipe_io.writeline('{0:d}'.format(num_data)):
return False
for i in range(num_data):
self.pipe_io.writeline('{0:f}'.format(self.ep_model.action[i]))
self.pipe_io.flush()
return True
(especially the first call to writeline, which send the number of actions).

I suspect something is malformed in your idf file, maybe a missing @ExtCtrlAct or wrong indexes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants