Replies: 1 comment
-
@datejada Can you take a look at this one so we can prioritize it? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am currently looking at our
node_injection
constraint and I believe there are a couple of potential bugs/need fixes:The first comment relates to demand and fractional demands:
The individual demand should be working properly also for ordered representative days. The fractional demand however dow not use the representative times, hence this could lead to infeasibilities. Could be easily fixed by simply replacing
t
in the demand and fractional demand call withrepresentative_time_slice(m, t)
The second comment I have relates to the diffusion and I was hoping maybe @Topi could have a glance at this:
I believe for the diffusion between two nodes, we implicitly assume that they both follow the same temporal strucutre, but this does not necessarily always hold. I think instead of summing only over the stochastic path, we need to sum over the
node_state_indices
together witht=t_overlaps_t(t_after)
. I guess we should also be cautious about the differences in TimeSlice durations (should we scale the diffusion accordingly?).Beta Was this translation helpful? Give feedback.
All reactions