The following warnings occurred:
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.0.30 (Linux)
File Line Function
/global.php 783 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.0.30 (Linux)
File Line Function
/global.php 783 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined variable $awaitingusers - Line: 36 - File: global.php(844) : eval()'d code PHP 8.0.30 (Linux)
File Line Function
/global.php(844) : eval()'d code 36 errorHandler->error
/global.php 844 eval
/printthread.php 16 require_once
Warning [2] Undefined array key "style" - Line: 909 - File: global.php PHP 8.0.30 (Linux)
File Line Function
/global.php 909 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined property: MyLanguage::$lang_select_default - Line: 5132 - File: inc/functions.php PHP 8.0.30 (Linux)
File Line Function
/inc/functions.php 5132 errorHandler->error
/global.php 909 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key "additionalgroups" - Line: 7288 - File: inc/functions.php PHP 8.0.30 (Linux)
File Line Function
/inc/functions.php 7288 errorHandler->error
/inc/functions.php 5152 is_member
/global.php 909 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key "additionalgroups" - Line: 7288 - File: inc/functions.php PHP 8.0.30 (Linux)
File Line Function
/inc/functions.php 7288 errorHandler->error
/inc/functions.php 5152 is_member
/global.php 909 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 165 errorHandler->error



jeplus.org forums
JEPLUS with EPMACRO multiple idf - Printable Version

+- jeplus.org forums (http://jeplus.org/mybb)
+-- Forum: Building simulation tools (http://jeplus.org/mybb/forumdisplay.php?fid=1)
+--- Forum: jEPlus (http://jeplus.org/mybb/forumdisplay.php?fid=2)
+--- Thread: JEPLUS with EPMACRO multiple idf (/showthread.php?tid=423)



JEPLUS with EPMACRO multiple idf - rkbest - 09-28-2016

I want to implement multiple IDF parts to my project and saw the JEPLUS EPMACRO setup. Does the ##include option applies to multiple parts?
What I want to implement is:-
1. Main IDF without the variable object
2. Variable object related to location and design days
3. Different tariff options four option as separate file

I want to simulated idf+location idf+same location tariff (not all tariff). What is best approach to have multipart idf but in combinations for location and tariff.
(I know we can have one idf with location and its related tariff as one) but wanted to know if this capability exist, and how to use it)


RE: JEPLUS with EPMACRO multiple idf - Yi - 10-03-2016

Sure. I think jEPlus will work just as you have expected.


RE: JEPLUS with EPMACRO multiple idf - rkbest - 10-04-2016

How do you configure that scenario? I see that JE+ runs all combinations of P1*P2*P3. However, I want just to run a combination of locations but with multiple parts (excluding all that do not correspond to that location). Won't this simulated idf+loc1+tariff_loc2 etc? Which I know is not a useful result.


RE: JEPLUS with EPMACRO multiple idf - Yi - 10-05-2016

You can name your location and tariff location file pairs in a certain pattern, e.g. loc1.idf/tariff1.idf, loc2.idf/tariff2.idf and so on.
In the main model, now must be a .imf file, put the include lines like:

##include loc@@id@@.idf
##include tariff@@id@@.idf

In your project, define a parameter for @@id@@, and give it a list of values such as [1:1:20]...


RE: JEPLUS with EPMACRO multiple idf - rkbest - 10-05-2016

Yes, i did not think that way, make more sense.
Thanks a lot.