0

Interpolate Field in Compact Schedule

I try to set a Field in a compact schedule. when I set final field as "Interpolate: No;", I face a severe error. for example:

Schedule:Compact,
 On,                      !- Name
 Any Number,              !- Schedule Type Limits Name
 Through: 12/31,          !- Field 1
 For: AllDays,            !- Field 2
 Until: 24:00, 1,         !- Field 4
 Interpolate: NO;        !- Field 5

Error: * Severe * ProcessScheduleInput: Schedule:Compact="ON", Looking for "Until" field, found=INTERPOLATE: No

Has anyone experienced such a warning?

Maysam's avatar
53
Maysam
asked 2022-07-13 15:13:31 -0500
Aaron Boranian's avatar
14.1k
Aaron Boranian
updated 2022-07-14 13:58:04 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

1

Accidentally, I found the answer. I need to set the interpolate field between for and until fields. for instance:

Schedule:Compact,
 On,                      !- Name
 Any Number,              !- Schedule Type Limits Name
 Through: 12/31,          !- Field 1
 For: AllDays,            !- Field 2
 Interpolate: No,         !- Field 3
 Until: 24:00, 1;         !- Field 5
Maysam's avatar
53
Maysam
answered 2022-07-13 15:26:04 -0500
Aaron Boranian's avatar
14.1k
Aaron Boranian
updated 2022-07-14 13:58:49 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments