Posts: 111
Threads: 32
Likes Received: 1 in 1 posts
Likes Given: 14
Joined: Jan 2024
Hi,
Sorry just a quick question;
how do I limit the activity bound for a bi-trade flow: e.g., from A state to B is 10PJ, while revert is 0.
Best,
Xiao
Posts: 1,984
Threads: 26
Likes Received: 68 in 59 posts
Likes Given: 20
Joined: Jun 2010
16-04-2025, 10:46 PM
(This post was last modified: 17-04-2025, 02:45 AM by Antti-L.)
Some alternatives:
1) Define the process type as 'DISTR'; the activity is then the IMP flow only, which you can bound in A and B;
2) Use FLO_BND instead of ACT_BND:
FLO_BND('B',y,p,'NRG','ANNUAL','UP') = 10;
FLO_BND('A',y,p,'NRG','ANNUAL','UP') = 0;
3) Use IRE_BND (works for bounding total trade (IMP/EXP) of given commodity between regions A and B);
4) Use a user constraint, which can refer to the IMP/EXP flows directly.
Posts: 111
Threads: 32
Likes Received: 1 in 1 posts
Likes Given: 14
Joined: Jan 2024
(16-04-2025, 10:46 PM)Antti-L Wrote: Some alternatives:
1) Define the process type as 'DISTR'; the activity is then the IMP flow only, which you can bound in A and B;
2) Use FLO_BND instead of ACT_BND:
FLO_BND('B',y,p,'NRG','ANNUAL','UP') = 10;
FLO_BND('A',y,p,'NRG','ANNUAL','UP') = 0;
3) Use IRE_BND (works for bounding total trade (IMP/EXP) of given commodity between regions A and B);
4) Use a user constraint, which can refer to the IMP/EXP flows directly.
Hi Antti,
Thank you, I will try to use FLO_BND
Best,
Xiao