We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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?
The text was updated successfully, but these errors were encountered: