First time here? Check out the Help page!
1 | initial version |
You have an extra comma "," in your People
object type after referencing the Space5-1 zone, so EnergyPlus thinks that you've defined an extra input field before the occupancy schedule and remaining input fields afterwards.
Change
People,
SPACE5-1 People 1, !- Name
SPACE5-1, , !- Zone Name
to
People,
SPACE5-1 People 1, !- Name
SPACE5-1, !- Zone Name
2 | No.2 Revision |
You have an extra comma "," in your People
object type after referencing the Space5-1 zone, so EnergyPlus thinks that you've defined an extra input field before the occupancy schedule and remaining input fields afterwards.
Change
People,
SPACE5-1 People 1, !- Name
SPACE5-1, , !- Zone Name
to
People,
SPACE5-1 People 1, !- Name
SPACE5-1, !- Zone Name
Also, I should note that the People
object is referencing the occupancy schedule named OCCUPY-1, but the name that you've assigned to the Schedule:File
object that's importing CSV schedule data is named SPACE1-1. Those two input fields should be the same if you want the occupancy schedule to follow CSV data.