shore.me.uk is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.

This server runs the snac software and there is no automatic sign-up process.

Admin email
nick@shore.me.uk

Search results for tag #solar

[?]Quixoticgeek » 🌐
@quixoticgeek@social.v.st

Dear nerds of the fediverse. Does anyone have any ideas for effective ways to attach solar panels to balcony railings, in such a way that they can withstand 120kph winds? I can't risk a panel falling off and killing someone.

    [?]Andrew » 🌐
    @codechimp@mastodon.online

    Having to get used to the cloudier days and balancing the charge/discharge of Octopus Flux schedules for the first time since installation in May.
    It really doesn’t help when the sun literally gives the forecast the finger though, but has saved me a bit from not charging enough in the early hours.

    Energy use and actual vs forecast solar, the actual spikes over double the forecast in the middle of the day.

    Alt...Energy use and actual vs forecast solar, the actual spikes over double the forecast in the middle of the day.

      AodeRelay boosted

      [?]Jan Wildeboer 😷:krulorange: » 🌐
      @jwildeboer@social.wildeboer.net

      TL;DR if battery technology and price continues its current trajectory, households will be able to store all the electricity they need at a price that is similar to the solar panels on the roof in just a few years from now. shkspr.mobi/blog/2025/09/how-b by @Edent

        [?]Terence Eden’s Blog » 🌐
        @blog@shkspr.mobi

        How big a solar battery do I need to store *all* my home's electricity?

        shkspr.mobi/blog/2025/09/how-b

        I have a modest set of solar panels on an entirely ordinary house in suburban London.

        On average they generate about 3,800kWh per year. We also use about 3,800kWh of electricity each year. Obviously, we can't use all the power produced over summer and we need to buy power in winter. So here's my question:

        How big a battery would we need in order to be completely self-sufficient?

        Background

        Let's take a look at a typical summer's day. The graph is a little complex, so I'll explain it.

        The yellow line shows solar production. It starts shortly after sunrise, peaks at midday, and gradually drops until sunset.

        The red line shows how much electricity our home is using. As you can see, there's a large peak about 19:00 when we cook dinner.

        The blue line shows how much electricity we draw or export from the grid. From midnight until sunrise we import because the sun isn't shining. Once the sun has risen we're able to power our house and export to our neighbours. When we cook, we draw from the grid and our battery - which is why the evening grid peak is lower than the household use dip.

        The CSV of the data looks something like this:

        Local_time

        Household_(W)

        Solar_(W)

        2025-08-25T08:25:00.000+01:00

        -187.76

        1166.77

        2025-08-25T08:30:00.000+01:00

        -227.04

        1193.25

        2025-08-25T08:35:00.000+01:00

        -253.06

        1222.84

        2025-08-25T08:40:00.000+01:00

        -266.87

        1245.18

        2025-08-25T08:45:00.000+01:00

        -450.8

        1268.66

        2025-08-25T08:50:00.000+01:00

        -251.84

        1281.79

        2025-08-25T08:55:00.000+01:00

        -1426.26

        1306.93

        2025-08-25T09:00:00.000+01:00

        -206.78

        1341.37

        2025-08-25T09:05:00.000+01:00

        -215.52

        1390.9

        2025-08-25T09:10:00.000+01:00

        -242.6

        1426.19

        2025-08-25T09:15:00.000+01:00

        -246.84

        1473

        It's fairly trivial to sum both columns and subtract one from the other. That shows either the excess or deficit in solar power for the household.

        On that day, the house used 9.7kWh and generated 19.6kWh. I'd need a 9.9kWh battery to store the excess right? Wrong!

        Because my usage doesn't track the sun, I'd actually need a 13kWh battery. That's the peak amount of excess electricity I've generated in that one day.

        What I want to do is find out what the maximum size battery I would need in order to store all of summer's electricity for use in winter.

        Luckily, I have several years of real data to go off! Let's get started!

        Disclaimer

        This is based on data generated by my home battery. It has probes to measure solar output and grid flow. It is not 100% clock-accurate compared to my solar-panels' internal reporting nor what my smart-meter reports. I estimate a 1-2% deviation, which is good enough for these purposes.

        My energy usage isn't representative of anything other than my usage. Your household is probably different. I already have a 4.8kWh battery which changes how and when I use energy.

        This doesn't account for gas heating or hot water. We have some electric heaters and taps which increases our electricity usage.

        My maths is probably right - but the code is open source, so feel free to check for yourself.

        Remember, this is just a bit of fun. There's no practical way to build domestic batteries with this capacity using the technology of 2025.

        Code

        We tend to start generating more electricity than we use starting in Spring. So I've picked the end of March 2024 to the end of March 2025.

        Let's see how big a battery we'd need to store our summer excess for winter. This finds the cumulative difference between each day's energy production and usage:

        import osimport pandas as pd# Load all the CSVsfilepaths = [f for f in os.listdir(".") if f.endswith('.csv')]df = pd.concat(map(pd.read_csv, filepaths))# Make sure they're in orderdf = df.sort_values("Timestamp")df = df.reset_index(drop=True)# Resolution is every 5 minutes, so divide by 12 to get hourlydf["Cumulative_Difference"] = ( (df["Household_(W)"] + df["Solar_(W)"] ).cumsum() ) / 12# kWh of battery neededint(df["Cumulative_Difference"].max() / 1000)## Draw a pretty graphdf.plot(kind="line", x="Local_time", y="Cumulative_Difference", xlabel="Date", ylabel="MWh", xticks=["2024-04-01", "2024-05-01", "2024-05-01", "2024-06-01", "2024-07-01", "2024-08-01", "2024-09-01", "2024-10-01", "2024-11-01", "2024-12-01", "2025-01-01", "2025-02-01", "2025-03-01", "2025-04-01"], legend=False, grid=True, fontsize=15)plt.show()

        The total is 1,068KWh - basically, a MegaWatt-hour of storage.

        Here's a quick graph to show how the storage would be used over the year.

        As you can see, even in this scenario there are a few days where we'd need to import energy from the grid.

        Is this sensible?

        Probably not, no. It doesn't account for increased energy use from having an electric car or moving away from gas heating / cooking. As solar panels increase in efficiency, it might be more sensible to replace the panels on my roof, or add some onto a shed.

        The environmental impact of creating and storing such huge batteries could also be factored in.

        A battery which is only 100% full for a few days probably isn't an efficient design. Using wind, hydro, and other green sources from the grid might be preferable.

        But, remember, this is an exercise in wishful thinking.

        Is this possible?

        Grid-scale batteries exist and they work brilliantly.

        But if I wanted my own MegaWatt-hour of battery storage, it would probably cost me between £100k and half-a-million quid.

        That doesn't include maintenance, the land, planning permission, and a hundred other things.

        But battery prices are falling fast. In the last decade lithium ion battery prices have fallen 90%. With new sodium ion batteries promising an even bigger drop - down to US$10/kWh.

        If - and it is a big if - those numbers came to pass, it would probably cost around £8,000 for a domestic battery. Basically the same cost as adding solar panels in the first place.

        Domestic solar works - yes, even in the rainy UK! It is relatively cheap, moves energy production as close as possible to energy consumption, reduces bill-shock, and means we don't have endless planning arguments about whether fields should be turned into solar farms.

        It is possible that, not too long in the future, every home could also have a 1 MegaWatt-hour battery. They would be able to capture all the excess solar power generated in a year.

        There's a bright and sunny future where every home can be solar-self-sufficient.


        If you've enjoyed this blog post, please consider switching to Octopus Energy - we both get £50 when you join.

          Terence Eden boosted

          [?]Terence Eden [He/Him/♂/男] » 🌐
          @Edent@mastodon.social

          🆕 blog! “How big a solar battery do I need to store *all* my home's electricity?”

          I have a modest set of solar panels on an entirely ordinary house in suburban London.

          On average they generate about 3,800kWh per year. We also use about 3,800kWh of electricity each year. Obviously, we can't use all the power produced over summer and we need to buy power in…

          👀 Read more: shkspr.mobi/blog/2025/09/how-b

            Terence Eden boosted

            [?]Terence Eden [He/Him/♂/男] » 🌐
            @Edent@mastodon.social

            🌞
            Between the panels and the battery, I've enough electricity to run the for my lunch.

            Is this ?

            Solar providing 1.27kW and battery providing 0.41kW. No electricity being drawn from the grid.

            Alt...Solar providing 1.27kW and battery providing 0.41kW. No electricity being drawn from the grid.

              Quixoticgeek boosted

              [?]The Penguin of Evil » 🌐
              @etchedpixels@mastodon.social

              Your regular reminder not to use cheap cables and connectors from random online stores.

              Just helped someone diagnose a solar problem as "the cheap cable I bought melted in the MC4 connector and it's a good job it wasn't near anything flammable"

              Most of those cables are not double insulated, badly crimped and rated at < 36v and often CCA not copper so not even high current carrying. They might look fine to the unfamiliar and you might think "it's only 800W" but that's enough for a fire..

                Terence Eden boosted

                [?]Terence Eden [He/Him/♂/男] » 🌐
                @Edent@mastodon.social

                What would it take for our home to be Solar Self-Sufficient?

                Work in progress, but I think I have the answer.

                🏠 I live in an ordinary house in suburban London.
                ☀️ Our solar panels generate 3,800kWh per year.
                🔌 We use the same amount of electricity per year.

                After crunching the numbers:

                🔋 Capturing all our solar excess needs a 1 MegaWatt-hour battery.

                Graph of cumulative difference between solar production and electricity use. Starting at zero in March and gradually growing over 6 months, then descending to zero again.

                Alt...Graph of cumulative difference between solar production and electricity use. Starting at zero in March and gradually growing over 6 months, then descending to zero again.

                  [?]impermanen_ 🕊️ [he/him/el] » 🌐
                  @impermanen_@zirk.us

                  Somehow missed this:

                  Pakistan, home to more than 240 million people, is experiencing one of the most rapid revolutions on the planet, even as it grapples with poverty and economic instability.

                  Suddenly about half the country’s electricity comes from solar. It’s not industrial solar farms or state-led: it’s a bottom-up revolution: households fed up with rising power costs and blackouts buying what are now ridiculously cheap solar panels.
                  cnn.com/2025/05/01/climate/pak

                    [?]GeriAQuin » 🌐
                    @GeriAQuin@mstdn.social

                    Ikea has started selling plug-in solar kits. No permits, no installers, full placement flexibility.

                    Currently they are only available in Germany but if it goes well they will start rolling them out in many more countries.

                    The system is small (800W) but that's enough to cover roughly 35% of a typical European apartment's daily electricity use.

                      [?]Terence Eden [He/Him/♂/男] » 🌐
                      @Edent@mastodon.social

                      > For one half-hour period on July 8, solar output was a record 14 gigawatts, meeting almost 40 per cent of Britain’s electricity demand during that period, according to the National Energy System Operator (Neso).

                      on.ft.com/4lyFl2K

                        [?]impermanen_ 🕊️ [he/him/el] » 🌐
                        @impermanen_@zirk.us

                        Some good news. The cost of storing power is dropping so fast—22% in a single year—that in many cities solar can now be a consistent, economical base load power source, day and night, 365 days a year. No fossil or nuclear required. As batteries continue to plummet in cost more places will find fossil energy a very poor bet indeed.

                        Now the hard part: slaying the specter of Jevons’ Paradox and getting consumption under control. Without that it’s all for naught.
                        ember-energy.org/latest-insigh

                          [?]Paul Fisher » 🌐
                          @psfshr@mastodon.me.uk

                          Just noted... our went live on 11th June, and as of today (just over a month later) we've just gone over our first 1MWh generated 😀

                          Screenshot of part of the web UI of our solar inverter controller. Screenshot shows the text:
Production
2.86 KW
16 Jul, 2025 10:26 AM
1.04 MWh Lifetime

                          Alt...Screenshot of part of the web UI of our solar inverter controller. Screenshot shows the text: Production 2.86 KW 16 Jul, 2025 10:26 AM 1.04 MWh Lifetime

                            [?]Sue is Writing Solarpunk 🌞🌱 » 🌐
                            @susankayequinn@wandering.shop

                            SOLAR: yes, the tax credits are expiring at the end of the year (get started now!)

                            BUT... I was thinking how much prices have dropped since I had mine installed in 2022 (catching the first wave of Biden's Inflation Reduction Act tax credits)...

                            1/n

                            drive.google.com/file/d/1I8HVa

                            © Residential solar and storage prices both reach new all-time lows
Solar prices dropped for the third six-month period in arrow, hitting $2.50 per watt,
the lowest median quoted price since we began tracking data in 2014. Quoted
storage prices also fell, setting anew record low of $999 per kilowatt-hour stored. In 2025, we are monitoring potential tariff impacts on solar and storage prices.

                            Alt...© Residential solar and storage prices both reach new all-time lows Solar prices dropped for the third six-month period in arrow, hitting $2.50 per watt, the lowest median quoted price since we began tracking data in 2014. Quoted storage prices also fell, setting anew record low of $999 per kilowatt-hour stored. In 2025, we are monitoring potential tariff impacts on solar and storage prices.

                              [?]Sue is Writing Solarpunk 🌞🌱 » 🌐
                              @susankayequinn@wandering.shop

                              Those "free market" Republicans are trying everything they can to kill the green energy market — not just killing tax credits, but tariffs and they even proposed *taxing* solar (it failed).

                              Why? Why do they effin care so much?

                              The easy answer...

                              3/n

                                [?]Ben Tasker » 🌐
                                @ben@mastodon.bentasker.co.uk

                                New post: Looking at changes in the UKs capacity

                                After reading a post yesterday claiming that the UK's solar production jumped by 42% this spring, I had a look to see what our system achieved

                                Then, I fell down a couple of rabbit holes looking at changes in the UKs deployed capacity

                                bentasker.co.uk/posts/blog/hou

                                  [?]Ben Tasker » 🌐
                                  @ben@mastodon.bentasker.co.uk

                                  I was curious to see if this was true for us - ecowatch.com/solar-power-gener

                                  > Solar farms and rooftops in the United Kingdom generated a record 42 percent more electricity from January through May 2025 than during the same period in 2024

                                  Sadly (but not too surprisingly) it isn't, but between Jan - May this year our generated about 18% more than it did the year before

                                  So increased sunshine is definitely a factor, but most of the gain in the article was prob expanding capacity

                                  During Jan - May 2024 we generated 996 kWh of electricity. In the same period this year, it was 1200.

                                  Alt...During Jan - May 2024 we generated 996 kWh of electricity. In the same period this year, it was 1200.

                                    Ben Tasker boosted

                                    [?]nivs » 🌐
                                    @nivrig@mastodon.social

                                    A year into having home , the numbers are in!

                                    45% of our annual household consumption was generated by the solar system (in rainy Northern Ireland), though we were only able to use 33% due to having no batteries. 33% represents a saving of over £1000 on energy costs.

                                    gemini://s73.girv.in/glog/2025

                                    s73.girv.in/glog/2025/2025-07-

                                    ☀️

                                      [?]DoomsdaysCW » 🌐
                                      @DoomsdaysCW@kolektiva.social

                                      One of Europe’s Hottest Cities Rediscovers an Old Cooling Technique

                                      By Laura Millan
                                      August 8, 2023

                                      "The streets of in southern were so hot that July afternoon that it felt almost impossible to walk outdoors. As temperatures approached 42C (108F), people scrambled to find shelter in air-conditioned homes, offices and public buildings. Yet, less than two miles from the city center, a cool breeze blew under a giant white roof.

                                      "The structure is a part of CartujaQanat, an architectural experiment in cooling solutions that doesn’t rely on burning more planet-warming . The site, about the size of two soccer fields, includes two auditoriums, green spaces, a promenade and a shaded area with benches. But its star performer remains hidden — the qanat, a network of underground pipes and tubes inspired by Persian-era canals.

                                      "The grid of can lower surrounding temperatures by as much as 10C using just air, water and power, according to Emasesa, the Seville public water company that helped to build it. The system is modeled on ancient tunnels dug to bring water to agricultural fields that were first documented in what is today . The Persians realized 1,000 years ago that the running water also cooled the air in the canals, so they fashioned vertical shafts to bring that air to the surface.

                                      " 'This is not an air-conditioning system like the one you may have in your home,' says Juan Luis López, the project’s supervisor and an engineer at Emasesa. 'We use natural techniques and materials to reduce temperatures.' "

                                      Read more:
                                      bloomberg.com/features/2023-se

                                      Archived version:
                                      archive.ph/36fz1

                                        Terence Eden boosted

                                        [?]Terence Eden [He/Him/♂/男] » 🌐
                                        @Edent@mastodon.social

                                        As of yesterday, our house in London has exported *one MegaWattHour* of solar electricity.

                                        All of our neighbours benefit from clean, green, locally generated power.

                                        We have a small roof, with an east/west split, and yet works brilliantly.

                                        More details:
                                        shkspr.mobi/blog/2025/03/what-

                                        Graph showing a peak in summer.

                                        Alt...Graph showing a peak in summer.

                                          [?]Alex@rtnVFRmedia Suffolk UK » 🌐
                                          @vfrmedia@social.tchncs.de

                                          and installation at a relatives house did well for - a cable break cut off the grid feed for around an hour - whole house remained with from the sources, the battery reserve was barely touched due to good sunlight (the people in the house didn't even need to switch off high consumption equipment, although I had suggested this should the power cut have lasted any longer (the grid supply returned around an hour later)

                                          Victron VRM real time display showing a large country house being entirely supplied for its energy requirements by solar and battery (due to the incoming grid power being lost)

                                          Alt...Victron VRM real time display showing a large country house being entirely supplied for its energy requirements by solar and battery (due to the incoming grid power being lost)

                                            [?]Paul Fisher » 🌐
                                            @psfshr@mastodon.me.uk

                                            And install all booked in!

                                            If it all goes to plan, we'll have both and in before the end of the month 😳

                                              [?]Paul Fisher » 🌐
                                              @psfshr@mastodon.me.uk

                                              Now for my sanity I may regret doing two installs back to back, but at least it’ll be done quickly!