GHI to POA Transposition Odd Results #1485
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @whoami-anvil, no, these results are not expected for a correct model. This kind of thing can happen because of time zone mismatch between the various datetime indexes in your data, for example perhaps your irradiance data are in local time and the calculated solar positions are in UTC, or vice versa. The fact that your measured irradiance peaks around 17:00 instead of closer to 12:00 also suggests a time zone issue. I suspect if you compare your measured irradiance data with the calculated solar zeniths curve you will find they are misaligned in time. I suggest making sure your measured data are localized to the correct time zone (i.e. that |
Beta Was this translation helpful? Give feedback.
Hi @whoami-anvil, no, these results are not expected for a correct model. This kind of thing can happen because of time zone mismatch between the various datetime indexes in your data, for example perhaps your irradiance data are in local time and the calculated solar positions are in UTC, or vice versa. The fact that your measured irradiance peaks around 17:00 instead of closer to 12:00 also suggests a time zone issue. I suspect if you compare your measured irradiance data with the calculated solar zeniths curve you will find they are misaligned in time.
I suggest making sure your measured data are localized to the correct time zone (i.e. that
df.index.tz
is appropriate, assuming you're …