Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question
3

Multiple PV generation systems

asked 2019-02-03 20:13:09 -0500

Ivanita's avatar

updated 2019-02-04 13:15:00 -0500

Hi,

I have defined 2 PV generation systems in my simulation algorithm (1 for rooftop PV and 1 for BIPV on facade) and named them separately. I would like to know if there is any way to identify the energy generation by different systems from the simulation results. So far I can only see the combined output from the csv file.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2019-02-04 04:07:57 -0500

updated 2019-02-04 04:40:35 -0500

You can add Output:Variable objects to your IDF file to request specific variables. After a successful E+ run, you can open the eplusout.rdd file to see the list of available variables. You can also look at the I/O reference guide to see the variables attached to an object.

For your case, you could request the ones for Generator:Photovoltaic such as Generator Produced DC Electric Power.

The Output:Table:SummaryReports has a predefined monthly report called GeneratorReportMonthly which may include a detail per generator, do try that. For short, you can include all reports:

Output:Table:SummaryReports,
   AllSummaryAndMonthly;  !- Report 1 Name

Edit: I tried with the E+ example file GeneratorsWithPV.idf, and I didn't get a GeneratorReportMonthly report, no matter if I use GeneratorReportMonthly explicitly or AllMonthly... After investigation in the source code, this one is added for cogeneration units, and the variables contained in the report also show that really.

Anyways, ShopWithSimplePVT.idf has some good examples of Output:Table:Monthly reports you can use for PV performance (just paste them into your IDF, and you'll see some new tables in your eplustbl.htm). There are others for inverters etc in that file, do look for them, but the one you'll be most interested in is:

  Output:Table:Monthly,
    PV Performance Summary,  !- Name
    2,                       !- Digits After Decimal
    Generator Produced DC Electric Power,  !- Variable or Meter 1 Name
    HoursNonZero,            !- Aggregation Type for Variable or Meter 1
    Generator Produced DC Electric Power,  !- Variable or Meter 2 Name
    SumOrAverageDuringHoursShown,  !- Aggregation Type for Variable or Meter 2
    Generator PV Array Efficiency,  !- Variable or Meter 3 Name
    SumOrAverageDuringHoursShown,  !- Aggregation Type for Variable or Meter 3
    Generator Produced DC Electric Energy,  !- Variable or Meter 4 Name
    SumOrAverageDuringHoursShown;  !- Aggregation Type for Variable or Meter 4

This is going to create a monthly table for each of your PV generators.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Careers

Question Tools

1 follower

Stats

Asked: 2019-02-03 20:13:09 -0500

Seen: 152 times

Last updated: Feb 04 '19