Skip to content
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

The pvconst parameter is different for PV modules even though they are created in exactly same way. #119

Open
sivasembian opened this issue Mar 20, 2020 · 0 comments

Comments

@sivasembian
Copy link

PV1 = pvmodule.PVmodule()
PV2 = pvmodule.PVmodule()
PV1.pvconst == PV2.pvconst

Ans -> False

pvconst= pvconstants.PVconstants(npts=101)
PV1 = pvmodule.PVmodule(pvconst=pvconst)
PV2 = pvmodule.PVmodule(pvconst=pvconst)
PV1.pvconst == PV2.pvconst

Ans -> True

Why do I need to assign the pvconst parameters to each module to ensure their similarity? Why are the default values not working as they should?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant