-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Change setter for losses_model to allow it to set multiple loss funct… #1084
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
34008ed
Change setter for losses_model to allow it to set multiple loss funct…
ncroft-b4 22cfb4f
Add functions to pvsystem to calculate the equivalent resistance in o…
ncroft-b4 56e1597
Adds functionality for 'pvsyst' to be used as a losses_model. Adds a …
ncroft-b4 b63f002
format and name change
ncroft-b4 e80f37d
dc_ohms_from_percent parameter changes
ncroft-b4 d1d0fe0
Revert "Adds functionality for 'pvsyst' to be used as a losses_model.…
ncroft-b4 b7aee94
Revert "Change setter for losses_model to allow it to set multiple lo…
ncroft-b4 6860cdf
Add dc_ohmic_model to model chain
ncroft-b4 75b5b23
Updates to api.rst
ncroft-b4 81919b6
Formating change for line too long
ncroft-b4 13510d2
test for pvsystem.dc_ohms_from_percent
ncroft-b4 74fe667
test for PVSystem.dc_ohms_from_percent
ncroft-b4 87387d7
formatting
ncroft-b4 bc5dfba
Add mocker functionality
8000
ncroft-b4 375fe40
modelchain tests for dc_ohmic_model
ncroft-b4 6a7de20
fix dc_ohms_from_percent test
ncroft-b4 c7e84c2
Move losses calc to pvsystem
ncroft-b4 07987c9
Add test for pvsystem.dc_ohmic_loss
ncroft-b4 116ae37
fix modelchain tests
ncroft-b4 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Adds functionality for 'pvsyst' to be used as a losses_model. Adds a …
…function for calculating dc losses from a loss percentage at stc based on the method employed by pvsyst.
- Loading branch information
commit 56e1597b20d6da501f71d0611756ffc1ea7e03aa
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the only DC loss applied by pvsyst? If no, is the plan to add to this method when other DC loss models are implemented?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In PVsyst you can also input ohms directly, which we could support pretty easily I think with a different loss parameter that uses the same model chain function but bypasses the equivalent resistance function. I want to investigate that more to confirm the method and then will work to implement.