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

how do we make a net-meter (PV generation - loads)?

asked 2015-02-25 12:22:24 -0500

tropo's avatar

updated 2015-07-11 16:57:28 -0500

As an HVAC engineer I see a massive opportunity to design building integrated PV to match the demand side. I suggest "west is best" outlook for facade PV to reduce demand late afternoons in summer.

OpenStudio's results-viewer is very powerful in partially answering my question ... just select the two meters and right-mouse options appear to subtract as required.

But how do we make a net-meter (PV generation - loads) measure to write a report on export to the grid?
That is what a homeowner gets paid for if they have a good contract from the power network.

edit retag flag offensive close merge delete

Comments

Tropo I just retagged your question to include the modeling software you are using.

Benjamin's avatar Benjamin  ( 2015-02-25 12:37:03 -0500 )edit

@Benjamin I might have simultaneously re-re-tagged.

MatthewSteen's avatar MatthewSteen  ( 2015-02-25 12:38:37 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
2

answered 2015-02-25 16:14:39 -0500

EnergyPlus has a built-in way to get the net metered values: Output:Meter,ElectricityNet:Facility;. There are a few other meters you can request, such as ElectricityPurchased, and ElectricitySurplusSold. See the documentation for Meters in EnergyPlus for more details.

In OpenStudio, you can request these meters via a Reporting Measure. Here is what the energyPlusOutputRequests section of the measure.rb file should look like:

  def energyPlusOutputRequests(runner, user_arguments)
    super(runner, user_arguments)

    result = OpenStudio::IdfObjectVector.new

    # use the built-in error checking
    if !runner.validateUserArguments(arguments(), user_arguments)
      return result
    end

    result << OpenStudio::IdfObject.load("Output:Meter,ElectricityNet:Facility;").get

    return result
  end
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: 2015-02-25 12:22:24 -0500

Seen: 245 times

Last updated: Feb 25 '15