Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question

Revision history [back]

If you modify the "OFFICE_ACTIVITY_SCHEDULE_01" from:

Schedule:Compact,
    Office_Activity_Schedule_01,  !- Name
    ActivityLevel,           !- Schedule Type Limits Name
    Through: 12/31,          !- Field 1
    For: Weekdays,           !- Field 2
    Until: 08:00,            !- Field 3
    72,                      !- Field 4
    Until: 18:00,            !- Field 5
    132,                     !- Field 6
    Until: 24:00,            !- Field 7
    72,                      !- Field 8
    For: Weekends,           !- Field 9
    Until: 24:00,            !- Field 10
    72;                      !- Field 11

... to (note the "AllOtherDays" entry) :

Schedule:Compact,
    Office_Activity_Schedule_01,  !- Name
    ActivityLevel,           !- Schedule Type Limits Name
    Through: 12/31,          !- Field 1
    For: Weekdays,           !- Field 2
    Until: 08:00,            !- Field 3
    72,                      !- Field 4
    Until: 18:00,            !- Field 5
    132,                     !- Field 6
    Until: 24:00,            !- Field 7
    72,                      !- Field 8
    For: AllOtherDays,       !- Field 2
    Until: 24:00,            !- Field 3
    72;                      !- Field 4

... you should no longer see a related (severe) error in the eplusout.err file.

Once that's fixed, EnergyPlus will then sequentially trip over other severe errors (e.g. on invalid thermostat definitions). I suggest you fix all of these severe errors, one by one, before attacking (most) warnings. Only then should you really start paying attention to inconsistencies in reported results. My 2-cents.