Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
backbone
backbone
Commits
2bc7f9da
Commit
2bc7f9da
authored
Oct 01, 2021
by
Tomi J. Lindroos
Browse files
Adding feature requested in issue
#155
parent
cfada579
Changes
1
Hide whitespace changes
Inline
Side-by-side
inc/3b_periodicLoop.gms
View file @
2bc7f9da
...
...
@@ -571,6 +571,18 @@ uft(unit, ft(f, t))${ [ ord(t) < p_unit(unit, 'becomeAvailable') and p_unit(un
or [ ord(t) >= p_unit(unit, 'becomeUnavailable') and p_unit(unit, 'becomeUnavailable') ]
}
= no;
// Unless before becomeUnavailable if becomeUnavailable < becomeAvailable (maintenance break case)
uft(unit, ft(f, t))${ [p_unit(unit, 'becomeAvailable') and p_unit(unit, 'becomeUnavailable')]
and [ord(t) < p_unit(unit, 'becomeUnavailable')]
and [p_unit(unit, 'becomeUnavailable') < p_unit(unit, 'becomeAvailable')]
}
= yes;
// Unless after becomeAvailable if becomeUnavailable < becomeAvailable (maintenance break case)
uft(unit, ft(f, t))${ [p_unit(unit, 'becomeAvailable') and p_unit(unit, 'becomeUnavailable')]
and [ord(t) >= p_unit(unit, 'becomeAvailable')]
and [p_unit(unit, 'becomeUnavailable') < p_unit(unit, 'becomeAvailable')]
}
= yes;
// First ft:s for each aggregator unit
Option clear = uft_aggregator_first;
...
...
Juha Kiviluoma
@juha_k
mentioned in issue
#111
·
Oct 11, 2021
mentioned in issue
#111
mentioned in issue #111
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment