Which generates more electricity - East- or West-facing solar panels?


We've had our solar panels for exactly a year. Our roof has an East/West aspect - and we have 2.5kW of panels on each side.

Here's a typical graph showing how each side performs during the day.

What I find interesting is that the side facing away from the sun is much less affected by cloud cover than the side facing the sun. In this example the Easterly panels generation is wildly variable up until midday when the sun passes over the top of the house. At which point, all the light they receive is indirect.

So, over the full year, which side produces the most free-range, organic, small-batch electricity for us?

I had a year's worth of CSV files - luckily Pandas makes it pretty easy to concatenate them all and then do mathemagics:

Python 3 Python 3import os
import glob
import pandas as pd
extension = 'csv'
all_filenames = [i for i in glob.glob('*-strings.{}'.format(extension))]
combined_csv = pd.concat([pd.read_csv(f) for f in all_filenames ])
combined_csv.columns = ["Time", "East", "West"]
total = len(combined_csv)
(combined_csv["East"].sum() / total) * 6
(combined_csv["West"].sum() / total) * 6
  • East generated 2,130kWh.
  • West generated 2,254kWh.

So West is roughly 5% better at generating electricity than East. But there isn't much in it. The data isn't completely clean - sometimes my monitoring software was down for a few hours. I'd put that 5% within the margin of error of the accuracy of my measuring system.

Basically, don't be put off if you can only have panels on one side of your roof.


Share this post on…

  • Mastodon
  • Facebook
  • LinkedIn
  • BlueSky
  • Threads
  • Reddit
  • HackerNews
  • Lobsters
  • WhatsApp
  • Telegram

14 thoughts on “Which generates more electricity - East- or West-facing solar panels?”

  1. Mark Duncombe says:

    Interesting stuff. Does having an East/West split compared to south only impact EV charging? Does it result in a smaller window where an EV can be charged?

    Reply
  2. says:

    Good Analysis on the effective facing of solar panels. If your rooftop solar system is installed in an open area where solar energy is available in sufficient strength then it will generate the required amount of energy. Still, many researchers say south-directed solar panels produce more energy than the other direction.

    Reply
  3. Sean Burlington says:

    We have 16 panels facing south - 10 years old so only 3.2 Kwhp (technology has improved - the panels are still good)

    Looking at your graphs compared to mine - you have a much longer peak - which is a good thing for consuming your own power.

    When the feed-in-tarrif was high the main concern was to generate as much power as possible at any time of day - as this generated the return (you get paid for what you generate)

    But with prices going up and the feed in tarrif going down this changes.

    These days you just want as much of the day as possible where you don't draw power from the grid.

    Like today - it as a sunny January and I got 7kwh

    But a lot of that was getting 2kw around lunch time - a lot of which got exported,

    If I could have had more power earlier from east facing panels and later from the west - I would have consumed less overall.

    Reply
  4. Richard Williams says:

    Many interesting things on your graph showing the east/west split. I appreciate it's only a single day and therefore we don't know if it's a typical day or a fluke. For example, the east generation is erratic in the morning when the sun is on those panels, and perhaps is being affected by passing clouds, and smooth in the afternoon when the sun is a best glancing across the panels, or they are lit solely by sky. And the west panels show the same effect in reverse. Also, "noon" isn't exactly 12:00, and anyway as your roof isn't exactly at 90 degrees you don't expect complete symmetry. And on your time line axis possibly it's set itself to BST. Nevertheless, if you look at where the east and west generation lines cross, you could read that as noon being just a couple of minutes after 13:00.

    Reply

What links here from around this blog?

What are your reckons?

All comments are moderated and may not be published immediately. Your email address will not be published.

Allowed HTML: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <p> <pre> <br> <img src="" alt="" title="" srcset="">