Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
1fa3026
Moving DEV Journlas
shirubana Mar 18, 2022
6675662
Merge remote-tracking branch 'origin/main' into development
shirubana Mar 18, 2022
0900ce3
DEV Journals
shirubana Mar 18, 2022
2ca9d9a
mismatch eq dev
shirubana May 18, 2022
1837912
6 more lines! :)
shirubana Oct 18, 2022
69e6c20
updates for dataframe version
shirubana Oct 26, 2022
c4b852f
update matrix format
shirubana Oct 26, 2022
f25ac0f
pytest fix testbflag
shirubana Oct 26, 2022
90e6237
linting and SAM default weatherfile
shirubana Dec 30, 2022
ea45d90
update pytest
shirubana Dec 30, 2022
51e9b1b
update __init__.py
shirubana Dec 30, 2022
291f09a
adsf
shirubana Dec 30, 2022
2b73573
du du dumb
shirubana Dec 30, 2022
04d51f8
pff.
shirubana Dec 30, 2022
caccde2
test_
shirubana Dec 31, 2022
5a507a3
asdf
shirubana Dec 31, 2022
bf798ef
finish lint
shirubana Jan 3, 2023
c674b11
remove TMY3 mentions
shirubana Jan 3, 2023
5260930
NSRDB Meta changes and added vf divideAndAlignAlbedos for results
shirubana Apr 5, 2023
88ab826
cpp
shirubana Apr 5, 2023
e139a58
Updating README naming
etoni044 Nov 7, 2023
198812e
Add sky-composition for generating different portions of rear irradiance
mjprilliman Sep 28, 2024
b730585
Add spectrum handling, consolidaiton into dataframe components in
mjprilliman Mar 21, 2025
99d7d75
Clean up indexing for timestamps and weather data, add avg rear
mjprilliman May 2, 2025
8a60459
Update light component integration across spectrum for normalization in
mjprilliman May 30, 2025
dca29e5
Merge branch 'development' into sky-composition-method
mjprilliman May 30, 2025
2e43626
Revert "Merge branch 'development' into sky-composition-method"
mjprilliman May 30, 2025
e244518
Add custom albedo option
mjprilliman Jul 16, 2025
bfcf235
Update sky composition method to account for user-specified front/back,
mjprilliman Sep 17, 2025
048fca4
Fix nan checking for composition summing, check for minutes in weather
mjprilliman Oct 29, 2025
4ed0a1a
Test latest pvlib to try to fix scipy deprecation issue
mjprilliman Oct 31, 2025
6d5d01d
Keep 3.8 support
mjprilliman Oct 31, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bifacialvf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ensure python3 compatible division and printing
from __future__ import division, print_function, absolute_import
from bifacialvf.bifacialvf import simulate, getEPW, readInputTMY # main program
from bifacialvf.bifacialvf import simulate, skycomposition_method, getEPW, readInputTMY # main program
from bifacialvf.vf import getBackSurfaceIrradiances, getFrontSurfaceIrradiances, getGroundShadeFactors # main subroutines
from bifacialvf.vf import getSkyConfigurationFactors, trackingBFvaluescalculator, rowSpacing # helper functions
from bifacialvf.sun import hrSolarPos, perezComp, solarPos, sunIncident # solar position and value
Expand Down
Loading