-
Notifications
You must be signed in to change notification settings - Fork 398
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
Schedule API #10848
base: develop
Are you sure you want to change the base?
Schedule API #10848
Changes from 26 commits
2d1b4c3
6a339a8
d0b7ff9
1272641
0a5be5d
ed1b393
aa645ef
b8b9473
72066d1
5f69976
60706a3
1c1ead8
7b4e5a4
98978bd
bc4d001
e4974ba
3e020e2
aaac698
aa9851e
aa03507
04e1872
4f8a09e
0fe2ff0
33b94a9
dfc8545
13c52af
4243a37
278e872
c6833bb
d26c66d
7d637f2
1d11ff5
fd772e2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -117,7 +117,7 @@ namespace AirLoopHVACDOAS { | |
|
||
int m_AirLoopDOASNum = 0; | ||
int m_OASystemNum = 0; | ||
int m_AvailManagerSchedPtr = 0; | ||
Sched::Schedule *m_AvailManagerSched = nullptr; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh the irony. No more |
||
int m_AirLoopMixerIndex = -1; | ||
int m_AirLoopSplitterIndex = -1; | ||
int NumOfAirLoops = 0; | ||
|
@@ -184,6 +184,10 @@ struct AirLoopHVACDOASData : BaseGlobalStruct | |
std::vector<AirLoopHVACDOAS::AirLoopMixer> airloopMixer; | ||
std::vector<AirLoopHVACDOAS::AirLoopSplitter> airloopSplitter; | ||
|
||
void init_constant_state([[maybe_unused]] EnergyPlusData &state) override | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This hook initializes builtin state, which for schedules includes the |
||
{ | ||
} | ||
|
||
void init_state([[maybe_unused]] EnergyPlusData &state) override | ||
{ | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're going to see a lot of this as all of the new schedule handling code uses this error reporting pattern.