Slashdot Mirror


Ask Slashdot: Can FOSS Help In the Fight Against Climate Change?

dryriver writes: Before I ask my question, there already is free and open-source software (FOSS) for wind turbine design and simulation called QBlade. It lets you calculate turbine blade performance using nothing more than a computer and appears compatible with Xfoil as well. But consider this: the ultimate, most efficient and most real-world usable and widely deployable wind turbine rotor may not have traditional "blades" or "foils" at all, but may be a non-propeller-like, complex and possibly rather strange looking three-dimensional rotor of the sort that only a 3D printer could prototype easily. It may be on a vertical or horizontal axis. It may have air flowing through canals in its non-traditional structure, rather than just around it. Nobody really knows what this "ultimate wind turbine rotor" may look like.

The easiest way to find such a rotor might be through machine-learning. You get an algorithm to create complex non-traditional 3D rotor shapes, simulate their behavior in wind, and then mutate the design, simulate again, and get a machine learning algorithm to learn what sort of mutations lead to a better performing 3D rotor. In theory, enough iterations -- perhaps millions or more -- should eventually lead to the "ultimate rotor" or something closer to it than what is used in wind turbines today. Is this something FOSS developers could tackle, or is this task too complex for non-commercial software? The real world impact of such a FOSS project could be that far better wind turbines can be designed, manufactured and deployed than currently exist, and the fight against climate change becomes more effective; the better your wind turbines perform, and the more usable they are, the more of a fighting chance humanity has to do something against climate change. Could FOSS achieve this?

154 comments

  1. Unless your computer is powered by 100% renewable by h33t+l4x0r · · Score: 2

    The best way to fight climate change with it is to turn it off.

  2. This is... by fyngyrz · · Score: 1

    This is a job for evolutionary software. Definitely.

    --
    I've fallen off your lawn, and I can't get up.
  3. No by Anonymous Coward · · Score: 0

    Now that the question has been answered, let's close the topic and move on.

    1. Re:No by Anonymous Coward · · Score: 0

      To expand on previous AC's answer, the answer is no because things like designing an optimal rotor, a better widget, or the world's best videogame all depend on there being a massive reward at the end if successful to justify the stupendous amount of manpower it takes to pull it off. These are not things that can be tackled by a single person or group of people on a pro bono or hobbiest basis because nobody has that kind of time to spare due to.... well, due to the requirements of working to feed a family. Even if you could get a hypothetical group of lottery winners together that didn't care about money and weren't off partying on a yacht somewhere, and even if they were successful, the product they create would probably put dozens or hundreds of programmers on the unemployment line and wind up creating massive societal problems. This is the reason the market-driven approach is the best for this type of thing and why FOSS usually winds up showing up to the party afterwards, when there are enough people who either participated in the original solution or reverse-engineered how it was done to copy it without doing the original research.

    2. Re:No by RobHart · · Score: 1

      I have to disagree. The fact that Linux (and much other FOSS) exists is evidence to support my claim.

      Back in the 1990s, there was no "market model" for FOSS. That came later than the products themselves.

  4. Of course by wyattstorch516 · · Score: 3, Funny

    FOSS can solve the hunger crisis, cure all disease, and anything else your imagination wants to believe.

    Reality may be different however.

    1. Re: Of course by Anonymous Coward · · Score: 0

      Think you missed the point. Just that that multiple contributors to a âoesuccessfulâ project. Versus commercial software where an outrageous license fee is charged. Maybe restrictions on what you can do with the outcome of the design. After all the machine algorithm not you designed the propellor.

    2. Re: Of course by Anonymous Coward · · Score: 0

      Is the goal worthy? Foss or no Foss, is the Propeller or Rotor some kind of a saint we all have to worship? Pray, why?

    3. Re:Of course by Anonymous Coward · · Score: 0

      The code that simulates the issues related to hunger, the structure of pathogens and anything else government-big or otherwise basic research is surely FOSS.

  5. No by Anonymous Coward · · Score: 0

    Bettridge's Law says the answer is 'no'.

  6. Genetic Algorithms by Edis+Krad · · Score: 4, Interesting

    You get an algorithm to create complex non-traditional 3D rotor shapes, simulate their behavior in wind, and then mutate the design, simulate again, and get a machine learning algorithm to learn what sort of mutations lead to a better performing 3D rotor. In theory, enough iterations -- perhaps millions or more -- should eventually lead to the "ultimate rotor"

    You're describing Genetic Algorithms. It's a fairly old technique. It shouldn't be too hard to implement it. The problem here is not FOSS, it's computational power. You need quite a lot of CPU time to run all the simulations and evolve the solution.

    Some sort of distributed computing framework like INSERT_PROJECT_NAME@home would work. But then you'd have to convince everyone to use it....

    1. Re:Genetic Algorithms by jrumney · · Score: 3, Interesting

      It's a fairly old technique.

      Yes. Back in the day we called it "trial and error". It is the most unscientific approach to solving problems that you can get. But computers have the advantage that doing it a million times to come up with something reasonable is feasible.

    2. Re:Genetic Algorithms by Anonymous Coward · · Score: 0

      It is the most unscientific approach to solving problems that you can get.

      The most scientific. Genetic testing is the most scientific because every nearby solution and iterative solution is tested. Anything else replaces many, many iterations of science with fewer, untested attempts at reasoning. Although the former depends on the latter, don't get them confused.

    3. Re: Genetic Algorithms by javaman235 · · Score: 3, Interesting

      The actual problem here is "simulate the wind". Doing so requires a FOSS fluid Dynamics package that runs fast, and to my knowledge this doesn't exist. NASA opened up theirs a few years ago seeking speedup:

      https://www.nasa.gov/aero/nasa...

      But there's physics stuff computers can't simulate fast, else we'd have AI's designing robots now.

      --
      -The art of programming is the pursuit of absolute simplicity.
    4. Re:Genetic Algorithms by Anonymous Coward · · Score: 0

      >Back in the day we called it "trial and error".
      That would be monte carlo, numbnuts.

    5. Re:Genetic Algorithms by dargaud · · Score: 1

      Some sort of distributed computing framework like INSERT_PROJECT_NAME@home would work. But then you'd have to convince everyone to use it....

      I wish @home would be folded into bitcoin, then at least all those CPU cycles would be useful for something, not just heating and generating fake money...

      --
      Non-Linux Penguins ?
    6. Re:Genetic Algorithms by Anonymous Coward · · Score: 0

      Trial and error can get you stuck in a local max/minimum. I guess this is why many/most/all genetic algorithms include some ratio of purely random "genes" getting tested.

    7. Re: Genetic Algorithms by Anonymous Coward · · Score: 0

      ... or OJ

    8. Re:Genetic Algorithms by Anonymous Coward · · Score: 0

      It's not trial and error, it's a form of gradient descent method, which are typically scientific and fairly efficient. It's no Runge-Kutta, but it works provided it doesn't get stuck in a local minimum.

    9. Re: Genetic Algorithms by Anonymous Coward · · Score: 0

      OpenFOAM is one of the most common open source CFDs.

  7. No ... by Anonymous Coward · · Score: 1

    ... unless it's GPL3.

  8. Betteridge's Law by john+of+sparta · · Score: 1

    no

  9. Can FOSS Design The Blades... by BlueStrat · · Score: 5, Funny

    ...Such that they slice the birds into easy-to-swallow bite-sized pieces instead of mostly just pulverizing them?

    Summer BBQ season is nearly upon us, after all.

    Strat

    --
    Progressivism (aka US 'Liberalism'): Ideas so good they need a police/surveillance-state to enforce.
    1. Re: Can FOSS Design The Blades... by Renaissance+Slacker · · Score: 1

      ... and heat the blades with solar power so they cook the birds mid-slice ... rotating hoppers full of Kansas City dry rub to catch them ... I smell a business plan.

  10. Cryptocurrencies are open source by Anonymous Coward · · Score: 5, Insightful

    And they’re wasting tons of energy for funbux.

    1. Re:Cryptocurrencies are open source by DontBeAMoran · · Score: 1

      No, cryptocurrencies are open source and some of them are using tons of energy to create more coins to keep the cryptocurrencies networks running, other use no more energy than banks or credit card networks.

      Once you have cryptocurrencies, only then can you exchange them for "funbux" to pay your landlord, your electric bill, your groceries, etc.

      --
      #DeleteFacebook
  11. Just before I turn off my computer... by presidenteloco · · Score: 3, Insightful

    A massive carbon tax would do a much more effective job at accelerating our transition off fossil fuels and slowing global warming.

    A massive carbon tax so that, to start with, Americans pay the same for gas as Europeans, who do just fine with that, and then keep increasing it.

    That's the best thing that would work, because except for tilting the playing field the way we have to move, it lets the free market take care of how to achieve the change.

    But unfortunately, an effectively large carbon tax would take politicians with brains, a conscience, and guts. So I'm not that optimistic given the garbage we currently have.

    --

    Where are we going and why are we in a handbasket?
    1. Re:Just before I turn off my computer... by Anonymous Coward · · Score: 1

      I agree we need more environmentally friendly energy options but...

      The problem with any energy taxing scheme is eventually you price the cost of energy so high that slavery becomes a viable option again.
      Cheap power did exponentially more to reduce slavery than all the historical do-gooders combined.

      This is of course an extreme argument but you need to be aware of unintended consequences.

    2. Re: Just before I turn off my computer... by Anonymous Coward · · Score: 0

      I'm interested but I have questions. Please explain how your suggestion would effect the American economy since it is different then the European economies? Would it be better to promote free market technologies by using incentives instead of using policies that might hurt the American economy instead? How would your tax policy effect the rural areas of America since public transportation is very limited to non existent? European countries are not as large so more people live in big cities which makes transportation issues less difficult to achieve. Farmers in America can live many miles away from such large cities so they're only transportation is their own vehicles. Would your tax policy exclude such situations since we need the farmers products? It seems to me that such a large and by your comment an ever increasing carbon tax could truly hurt and stagnant the American economy which in turn effects other countries around the world. I'm just not sure a big tax increase is the best solution at this time.

      -geekpoet

    3. Re:Just before I turn off my computer... by Anonymous Coward · · Score: 0

      A massive carbon tax is not needed. All you need is an open source solution developed in RUST with a decent code of conduct and all humanity problems will vanish, including climate changes!

    4. Re: Just before I turn off my computer... by Anonymous Coward · · Score: 0

      False! The solution must be coded with Ruby on Rails. Only then can it save the planet.

    5. Re: Just before I turn off my computer... by Anonymous Coward · · Score: 1

      Global warming is a scientific fact. How we decide to deal with it may or may not be a money grab. Were you born a fucking moron? Al Gore has proposed potential solutions. What have you done other than
      stick your head in the sand?

    6. Re:Just before I turn off my computer... by SuperKendall · · Score: 2

      A massive carbon tax would do a much more effective job at accelerating our transition off fossil fuels

      Because history has shown us that making an entire population poor greatly enhances care for the environment. Why, look t what a model for environmental protection East Germany was under communist rule! A large enough carbon tax, and everywhere gets to be East Germany. Fun times!

      --
      "There is more worth loving than we have strength to love." - Brian Jay Stanley
    7. Re: Just before I turn off my computer... by Anonymous Coward · · Score: 0

      How much of global warming is due to human activity and how much due to nature? If much of the cause is natural, then taxing carbon makes no sense at all other than being a money grab.

      The Earth has experienced numerous warming and cooling periods in very recent geological time. If anything, human activity may be forestalling the next ice age.

      Read up on Milankovitch Cycles: https://en.wikipedia.org/wiki/Milankovitch_cycles

    8. Re:Just before I turn off my computer... by h33t+l4x0r · · Score: 2

      Hmm, Germany is on 100% renewables now, so that argument kind of backfired on you.

    9. Re:Just before I turn off my computer... by ShanghaiBill · · Score: 3, Informative

      Hmm, Germany is on 100% renewables now, so that argument kind of backfired on you.

      1. Germany is no where close to 100% renewable energy.
      2. East Germany switched to capitalism 30 years ago.
      3. Even today the ex-communist east is is dirtier per euro of GDP than the west.

    10. Re: Just before I turn off my computer... by elwinc · · Score: 3, Informative

      The current rate of warming is about 50 times higher than any warming cycle detected in the geologic record.

      So if we attribute the typical Milankovitch Cycle warming rate to be caused by natural orbital change, that would leave another 98% of the warming to be attributed to other, non-Milankovitch causes. Such as man-made global warming.

      --
      --- Often in error; never in doubt!
    11. Re:Just before I turn off my computer... by hAckz0r · · Score: 1

      So I'm not that optimistic given the garbage we currently have.

      Can we please have just a little optimism? I hear there is a new technology using plasma that can cleanly convert common garbage directly into electricity! I think that solves both problems at once. /s

    12. Re: Just before I turn off my computer... by presidenteloco · · Score: 1

      Read up on this:

      From a US court case where some big oil companies are being sued.

      Keep reading/scrolling down this til you come to the numbered questions and answers.

      https://www.vox.com/energy-and...

      --

      Where are we going and why are we in a handbasket?
    13. Re: Just before I turn off my computer... by Anonymous Coward · · Score: 0

      50 times higher? That's a mighty bold claim there. Have some information to back that up?

    14. Re: Just before I turn off my computer... by Bing+Tsher+E · · Score: 1

      It needs to be hand-coded by a team of artisans in assembly language.

    15. Re: Just before I turn off my computer... by Anonymous Coward · · Score: 1

      50 times higher? That's a mighty bold claim there. Have some information to back that up?

      Yes. Of course he has. And you know it (no, I'm not going to get caught into a stupid argument whether it's precisely 47.2 times or 51.7 times faster). The question is why, given that you know that there are plenty of books, courses, video series etc that show exactly what you want to pretend is a new dicovery, why do you try to pretend they don't exist instead of, I don't know, just giving a link to the relevant skeptical science article?

    16. Re: Just before I turn off my computer... by Anonymous Coward · · Score: 0

      I work at a university. No platforming is done by students on their own (and most students aren't politically active, so few notice), and has no impact on research activity.

    17. Re: Just before I turn off my computer... by Anonymous Coward · · Score: 0

      idiot. we need clima change . static is death

    18. Re: Just before I turn off my computer... by Anonymous Coward · · Score: 0

      9-11 being an inside job is scientific fact but libtards don't want to talk about it. Because there's no potential for a tax racket I guess.

      ae911truth dot org

    19. Re: Just before I turn off my computer... by harvey+the+nerd · · Score: 1

      Probably the tired, old, boned stations data that they keep "adjusting" up and cherry picked urban hot sites, vs geological time intervals...

    20. Re:Just before I turn off my computer... by Anonymous Coward · · Score: 0

      Actually, a carbon tax would hurt those flying in private jets the most, unless it's propelled by biofuel...

    21. Re:Just before I turn off my computer... by silas_moeckel · · Score: 3, Interesting

      We know how to make cheap plentiful power, we lack the will to do so. The same people that are running around yelling global warming also hate it. Fission works it's got far too many regulations to do cheaply. It gots far to many court delays to finance. Everyone in the US is a bespoke design but all 70's level tech. This is all by design you need far to much political capital to get one put in.

      Build them in factories with a design that's not 40+ years old. Hells we can use the spent rods as feedstock for modern designs.

      Carbon taxes are crap it's just a tax and a regressive one at that. Want change put in sensible PV incentives and billing. The entire concept of taxing things you don't like people doing is broken, an end run around the constitution to allow nearly unlimited federal power.

      --
      No sir I dont like it.
    22. Re:Just before I turn off my computer... by Anonymous Coward · · Score: 0

      WTF??? If you can impose a tax you should certainly find a way to prohibit slavery and enforce it?

    23. Re:Just before I turn off my computer... by pipingguy · · Score: 1

      Facts don't matter to the Klimate Kult.

    24. Re:Just before I turn off my computer... by Anonymous Coward · · Score: 1

      But unfortunately, an effectively large carbon tax would take politicians with brains, a conscience, and guts. So I'm not that optimistic given the garbage we currently have.

      Unfortunately, an effectively large carbon tax would take an electorate with brains, a conscience, and guts.

    25. Re: Just before I turn off my computer... by vivian · · Score: 1

      Virgin assembly language artisans... but I guess that's axiomatic.

    26. Re: Just before I turn off my computer... by TrumpThemAll · · Score: 0

      From my scientific studies, I can tell you all this is bullshit. How have I done me studies? I keep track of the temperature and I can tell you that these last few years have been much cooler than the years before it. So, if there was a problem, it's over. Not tell these idiot "scientists" to go get a real job and stop wasting my tax money. Seriously, you are going to trust people on what the weather will be like in 100 years when they can't even accurately tell you how the weather will be tomorrow?

    27. Re:Just before I turn off my computer... by Anonymous Coward · · Score: 0

      Your mom's a whore you little bitch

    28. Re: Just before I turn off my computer... by Anonymous Coward · · Score: 0

      Only an overpaid rich asshole would suggest such an incredibly regressive tax that hurts poor people.

      Thankfully our political class, as dumb as they are, is smarter than you.

    29. Re:Just before I turn off my computer... by Anonymous Coward · · Score: 0

      Naive carbon taxes are indeed regressive, but there are a lot of options to make it neutral from a tax credit to universe basic income. PV incentives would just pick that technology over other potentially cheaper and more efficient options. The benefit of a carbon tax is that it doesn't pick a favorite technology, instead it lets the market sort out how to reduce the solution in the most efficient manner. If PV ends up winning that race, nothing is lost.

    30. Re:Just before I turn off my computer... by jbengt · · Score: 1

      The problem with any energy taxing scheme is eventually you price the cost of energy so high that slavery becomes a viable option again.

      Then just increase the slavery tax. Problem Solved!

    31. Re:Just before I turn off my computer... by Ichijo · · Score: 1

      Carbon taxes are crap it's just a tax and a regressive one at that.

      Revenue-neutral carbon taxes where the revenue is returned equally to everyone is highly progressive. If for example the tax were $1 per gallon of gasoline and the average person buys 500 gallons of it per year, everyone would receive a $500 check every year whether they purchased any gasoline that year or not. $500 may not seem like much to you and I but to a poor person that's a lot of money!

      If you are truly opposed to regressive taxes, would you support eliminating sales taxes that are used to build freeways such as Los Angeles' Measure M, and replace them with non-regressive tolls? Or are sales taxes suddenly not regressive (or they are but it's not such a bad thing anymore) whenever they benefit you personally?

      --
      Any sufficiently unpopular but cohesive argument is indistinguishable from trolling.
    32. Re:Just before I turn off my computer... by Ichijo · · Score: 1

      making an entire population poor

      Could you explain how a carbon tax, even one that isn't revenue-neutral, would make everyone poor? What do you expect the people YOU elected would do with the money, burn it? If so, you need to be a little more careful how you vote!

      Or maybe you're saying that we would be be poor because we wouldn't be digging up as much oil out of the ground and enriching ourselves at the expense of our children and grandchildren. This reasoning I could agree with.

      --
      Any sufficiently unpopular but cohesive argument is indistinguishable from trolling.
    33. Re: Just before I turn off my computer... by scdeimos · · Score: 1

      Al Gore has proposed potential solutions. What have you done other than stick your head in the sand?

      My goodness, such harsh language!

      While Al Gore was dramatizing sea level rise to the world he was buying himself water front real estate more cheaply. Al Gore Buys $8.9 Million Ocean-view Villa

    34. Re:Just before I turn off my computer... by silas_moeckel · · Score: 1

      Sure till you figure out that the poor person needs to use 750g a year because the drive a POS car or live in a house with poor insulation but would still not like to freeze. It's much like the PV buybacks it hurts anybody who can not put up PV ya know people like renters because you end up subsidizing the people that can.

      I've got no issue with use taxes if they actually go towards what they are supposed to, yes they can affect the poor but they tend to be fairer. I absolutely hate when you siphon off the money for pork barrel projects. When talking about transportation it's all about getting you from point a to b faster and people will use it, rather than tax it to death because we think it's bad and my personal favorite spend the money that was supposed to saved for later then cry poor when you need the infrastructure built.

      --
      No sir I dont like it.
  12. Betz's law by ThosLives · · Score: 5, Interesting

    "Traditional" turbine designs are already up to 80% theoretical maximum efficiency. Trying to eke that last 20% is not really going to save the planet since we're nowhere near using that much wind in the first place.

    That is - if you want to get FOSS to improve tech adoption, direct it to making things more affordable or accessible, not toward having more expensive higher-efficiency, higher-complexity devices.

    --
    "There are a dozen opinions on a matter until you know the truth. Then there is only one." - CS Lewis (paraprhase)
    1. Re:Betz's law by Anonymous Coward · · Score: 0

      AKA, Amdahl's law. Or some variant thereof.

    2. Re:Betz's law by Anonymous Coward · · Score: 1

      Ah yes, but what if we could find a turbine with much greater theoretical maximum efficiency?

    3. Re:Betz's law by ishmaelflood · · Score: 4, Interesting

      No Betz's law is that the efficiency of a system that extracts energy from a free flowing windstream cannot be more than 59.3% . The reason is that if you take more energy than that out of the incoming windstream, it all piles up behind the rotor (as a sort of handwavy explanation). It doesn't matter what the configuration is you won't beat that.

      The idea of using a GA to develop aero is of course not new, it is not hard to put a matlab or pythn program together to do this. Many years ago i had a GA script that optimised a structure using FEA that worked well enough.

      However, you need to define a set of genes to describe your shape. That might be tricky.

    4. Re:Betz's law by Anonymous Coward · · Score: 2, Insightful

      Perhaps GP was talking of 80% of that theoretical maximum of 59.3%. Your statements don't seem to be mutually exclusive to me.

    5. Re:Betz's law by AmiMoJo · · Score: 1

      The DIY "PowerWall" guys have done a lot to make recycling batteries easier and cheaper. That includes developing things like 3D printed brackets and open source power controllers.

      It's time to start thinking about having every lithium battery tested and if possible re-used instead of being discarded or broken down. Most batteries that are "dead" are actually mostly fine, it's just one or two bad cells. Not only will it prevent those cells becoming waste, it will build up the grid's battery backup capability faster.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    6. Re:Betz's law by argStyopa · · Score: 1

      To be clear (I had to look it up) the second poster is right - Betz's Law caps the max efficiency of such systems at 16/27 or 59%.

      The previous poster (turbines reach 80% efficiency today) is ALSO right, but that 80% is 80% of the Betz cap (so 80% of 59% = about 47% overall efficiency).

      --
      -Styopa
    7. Re:Betz's law by dehachel12 · · Score: 1

      efficiency ? methinks cost per Kwh is a more valuable measure.

    8. Re:Betz's law by Anonymous Coward · · Score: 0

      That was exactly ThosLives' point.

  13. Machine learning by 110010001000 · · Score: 2

    "In theory, enough iterations -- perhaps millions or more -- should eventually lead to the "ultimate rotor" or something closer to it than what is used in wind turbines today."

    That pretty much sums up machine learning/AI today. A million monkeys on a million typewriters will eventually write Shakespeare. Except it won't happen.

    1. Re: Machine learning by Anonymous Coward · · Score: 0

      No, a million monkeys on a million typewriters will eventually write Shakespeare if you have a differentiable loss function to describe Shakespeareyness and can backpropagate that through your DNN.

  14. Who is paying Slashdot to post this propaganda? by Anonymous Coward · · Score: 1, Insightful

    Slashdot was once a tech site for CS and EE news, operating systems, Linux, BSD, etc. It veered of course a couple times with the Jon Katz episodes, but was able to quickly restabilze.

    These "glboal warming" stories have pretty much hijacked the content on Slashdot. It is political and completely off topic for tech news. It reeks of George Soros and other globalist one-worlders and fellow traverllers.

    Please boycott the advertisers until Slashdot rights itself, if that is even possible. Slashdot is only a name, just another entry in some godless corporate log book of an anonymous holding company.

    The real core who originally made Slashdot what it is have been gone for ages. Now we have pretenders using the name but the the spirit of what had made Slashdot popular and famous.

    1. Re:Who is paying Slashdot to post this propaganda? by Anonymous Coward · · Score: 1

      I hear ya. Now it's turned into a cesspool of pseudo-science... at best.

    2. Re:Who is paying Slashdot to post this propaganda? by greenwow · · Score: 0

      But standing against Trump is important, so I'm glad this site devotes so much time to complaining about Facebook.

    3. Re:Who is paying Slashdot to post this propaganda? by Pseudonym · · Score: 4, Insightful

      These "glboal warming" stories have pretty much hijacked the content on Slashdot.

      Slashdot has always done science stories. Anthropogenic climate change is science.

      I remember when almost all Slashdotters respected science. That was a long time ago.

      --
      sub f{($f)=@_;print"$f(q{$f});";}f(q{sub f{($f)=@_;print"$f(q{$f});";}f});
    4. Re:Who is paying Slashdot to post this propaganda? by johannesg · · Score: 1

      I remember when almost all Slashdotters respected science. That was a long time ago.

      I remember when science was respectable, before it made statements like "the science is settled" and "90% of scientists agree". That, too, was a long time ago.

    5. Re:Who is paying Slashdot to post this propaganda? by pipingguy · · Score: 1

      But catastrophic anthropogenic climate change is poor computer simulations fed with dubious assumptions, statistics manipulations, hand-wavery and hysteria. And a great taxpayer-funded income source.

    6. Re:Who is paying Slashdot to post this propaganda? by Anonymous Coward · · Score: 0

      A better headline would read: Ask Slashdot: Can FOSS Help Design Better Rotor Blades for Wind Turbines? But no, they have to angle in the climate change crap. There's probably a climate change quota the editors have to meet.

      It's like when I had to sell extended warranties on TVs. I didn't think they were good for the consumer but I had to sell them or I'd loose my job.

    7. Re:Who is paying Slashdot to post this propaganda? by Anonymous Coward · · Score: 0

      Deary deary me, there still are people that can't accept that those darnn hippies were right. Get over it.

    8. Re:Who is paying Slashdot to post this propaganda? by Pseudonym · · Score: 1

      Science used to reserve language like that for astrology and creationism. Those were the days when pseudoscience was fringe.

      --
      sub f{($f)=@_;print"$f(q{$f});";}f(q{sub f{($f)=@_;print"$f(q{$f});";}f});
    9. Re:Who is paying Slashdot to post this propaganda? by Anonymous Coward · · Score: 0
    10. Re:Who is paying Slashdot to post this propaganda? by Anonymous Coward · · Score: 0

      Haha, you think there's money to be made in climate science. That's so naive.

      Here's a free clue: Climate scientists, as a rule, like modern stuff. If we could get away with doing things as usual, they would be the first to feel relieved.

  15. Re: Who is paying Slashdot to post this propaganda by Anonymous Coward · · Score: 0, Insightful

    It reeks of George Soros and other globalist one-worlders and fellow traverllers.

    Sounds like someone has been sucking too much Koch.

  16. Re: Unless your computer is powered by 100% renewa by Anonymous Coward · · Score: 0

    Yeah right like best to create fire is with flint and a steel.

    Why not use your computer for something useful like engineering efficient rotors rather than playing games or surfing Facebook.

  17. what a fucktard question by Anonymous Coward · · Score: 0

    Nothing against FOSS, it's great, just the head up yer ass notion called climate change.

  18. Bitcoin == (FOSS && waste_of_energy) by Anonymous Coward · · Score: 1

    True or False?

  19. It can by Anonymous Coward · · Score: 0

    But I use Gentoo, so... screw the climate.

  20. Not a new idea by DontBeAMoran · · Score: 1
    --
    #DeleteFacebook
  21. Technically yes, but that answer isn't useful by larwe · · Score: 2
    The evolutionary part of this software (the piece that says "let's vary parameters and see what results we get, and learn what makes the overall result better") is sort of the easy bit. It's the flow simulation part of it ("how do we create a simulation of the thing being tested, that will accurately transfer to real life") that's hard. Your evolutionary algorithm might be wonderful, and there's _lots_ of FOSS in that field, but it's worthless if it's optimizing a simulation that doesn't accurately model real life. An illustrative article about this was published just the other day https://www.popularmechanics.c...

    Fluid flow simulation is what one might call a military grade problem - efficient and accurate ways of doing it are either protected by commercial secretcy (because CAD software to design multimillion dollar yachts and aircraft is expensive) or actual military secrecy - because the problem you're solving is the same sort of problem that's being solved (for example) when designing SSBN propellers and hulls to minimize cavitation and make the ships run silent.

  22. Sure!!!! by Anonymous Coward · · Score: 0

    But only if you quit wasting time asking about it on Slashdot and start doing it! What are you waiting for?

  23. Re: price the cost of energy so high by presidenteloco · · Score: 3, Informative

    The whole point of a carbon tax is:

    Energy != Fossil Fuels

    There are other ways we can harness solar energy, and geothermal energy. Our addiction to the drug of cheap fossil fuels is preventing us from getting to those other ways fast enough.

    --

    Where are we going and why are we in a handbasket?
  24. Bitcoin miner by Anonymous Coward · · Score: 0

    Ask /. How can I help my local Bitcoin miner who is consuming lots of energy?

  25. Carbon tax doesn't make people poor by presidenteloco · · Score: 0

    If you don't agree with spending the tax on R&D into new energy economy technologies, then you can just lower income taxes by the amount of revenue taken in by the carbon tax, or use it to start funding the universal basic income we're going to need soon because of automation and AI.

    --

    Where are we going and why are we in a handbasket?
  26. Create more FOSS apps for bitcoin by Anonymous Coward · · Score: 0

    Bitcoin will help us fight climate change by saving the trees that are killed to make paper for money.

  27. Re: Unless your computer is powered by 100% renewa by Pseudonym · · Score: 1

    Or mining Bitcoin.

    --
    sub f{($f)=@_;print"$f(q{$f});";}f(q{sub f{($f)=@_;print"$f(q{$f});";}f});
  28. Tux Racer by Bing+Tsher+E · · Score: 2

    A free software package, Tux Racer, could help in the fight against Climate Change. No, I'm not talking about the Tux Racer game as we all, ahem, normally play it. This would be a version where the player moves a cardboard cutout 'tux' down the 'screen' (a big sheet of cardboard.)

    The energy savings would be immense, though Steam would lose a lot of revenue.

    1. Re: Tux Racer by Anonymous Coward · · Score: 0

      :))

  29. Akin to ray-tracing by Anonymous Coward · · Score: 0

    The computational problem is like ray-tracing, but with wind instead of light. The problem is that you need to generate turbine shapes to do the analysis, over-and-over again. The computation will involve a supercomputer; but, hey, yesterday's Cray is today's cellphone.

  30. Easy by Pseudonym · · Score: 4, Interesting

    If you want to save the world through free and open source software, there's an easy way to do this: stop building systems that waste resources.

    Don't use programming languages that spend 10 CPU cycles to do 1 cycle of work. Don't arrange things so a program is recompiled every time it is run. Write software that uses less RAM. Write replacements for spyware-laden crap. Do not support battery-burning DRM and tell them why. Encourage wired rather than wireless connections.

    Stop thinking like a coder and start thinking like an engineer.

    --
    sub f{($f)=@_;print"$f(q{$f});";}f(q{sub f{($f)=@_;print"$f(q{$f});";}f});
    1. Re:Easy by Anonymous Coward · · Score: 0

      Does the energy required to develop new FOSS programs and systems justify their environmental impact? If we stayed static, would that reduce the carbon impact more than new efficiencies of millions of lines of new code?

    2. Re:Easy by Pseudonym · · Score: 1

      It's a good question and it's something that should be studied. Commercial software from the big vendors is probably more power hungry than bazaar-style FOSS. But many FOSS projects (e.g. Linux, Chromium) are effectively made in a big vendor kind of way. And a lot of FOSS is written in Python and PHP.

      --
      sub f{($f)=@_;print"$f(q{$f});";}f(q{sub f{($f)=@_;print"$f(q{$f});";}f});
  31. Here is a thought by Anonymous Coward · · Score: 0

    Ah yes, thinking of problems from mostly an engineering and technical perspective. I am an engineer and so traditionally came from a similar vantage point.

    However, helping to encourage behavioral changes on a municipal scale can be just as important. There are commercial packages that exist, but are expensive. I'd be interested in an FOSS and potentially contributing.

  32. gas is peanuts by Anonymous Coward · · Score: 0

    Gas! Half of the American houses are heated with diesel, ain't they?
    And in European old cities they still use coal to heat the tenements.

    All this hysteria about gas is just to forbid people owning cars. There are many many more embarrassing things that consume fossil fuels, see above.

    1. Re: gas is peanuts by Anonymous Coward · · Score: 0

      More like ... wood, than coal

  33. Technically you are talking through your hat by ishmaelflood · · Score: 1

    eg https://eawephdseminar.science... p33

    in which he compares cfd results from the free software OpenFoam for a wind turbine in cfd and in reality. Military grade my arse.

  34. Climate change is a fact by oldgraybeard · · Score: 1

    I just do not believe that we humans will be able to do anything about it in the next 50 years.

    Just my 2 cents ;)

    1. Re:Climate change is a fact by dehachel12 · · Score: 1

      disagree. wind and solar power are now cheap enough to take away investment dollars from coal and oil into wind and solar. floodgates are opening.

  35. Re: by Anonymous Coward · · Score: 0

    Yes, so we at least know we can make the situation worse.

  36. Re: price the cost of energy so high by rtb61 · · Score: 1

    In this case, the design of the blade for wind turbines is only a part of the answer and good vertical axis wind turbine, needs a far more complex design to achieve really good outcomes and the blade itself, whilst important does not the whole design create. A really tricky problem to resolve but human imagination always delivers in one way or another. I find it a interesting subject and have whiled away many an hour coming up with and investigating various designs. Always puttering around with one in the back of my mind, it's an interesting subject.

    --
    Chaos - everything, everywhere, everywhen
  37. Can Chrocheting Help In the Fight Against C Change by Anonymous Coward · · Score: 0

    Also, Can making strawberry flavored crepes help in the fight against climate change? I need an expert with moral authority to make me feel better about myself. I mean, I've never made crepes before, but I can make good pancakes with pancake mix, and I can dream you know.

  38. Re:Can Chrocheting Help In the Fight Against C Cha by Bing+Tsher+E · · Score: 1

    It's relatively easy to make pancakes from scratch. Look up a recipe and be daring: make some and be proud!

  39. Re:Unless your computer is powered by 100% renewab by NicknameUnavailable · · Score: 1

    Nah, for OP the best way to fight climate change is for him to /wrists.

  40. SolarNetwork by FriedmannSolution5 · · Score: 1

    Yes take a look at: http://www.solarnetwork.net/v4...

  41. Climate change=Fake news by Anonymous Coward · · Score: 0

    I cannot take Slashdot seriously if you continue to post this garbage.

    1. Re:Climate change=Fake news by Anonymous Coward · · Score: 0

      Because you still take Slashdot seriously? Me think that you haven't realised the full depth of the deception.

  42. Call Your Local by Anonymous Coward · · Score: 0

    For Bob's sake, call your local supercomputer center, or speak to the people in national research organizations. You have an ensemble of parallel optimization problems that can be run on hundreds of thousands of cores. Now how much would a per-core licensed HPC code costs? Little too much for your company maybe?

  43. Re: Unless your computer is powered by 100% renewa by Anonymous Coward · · Score: 0

    If the return on energy invested by designing a better blade is high enough, you win even if the computing time is coal powered, as you deploy many blades.

    This having been said, I don't think the article writer has much understanding of the amount of computing power required for CFD to model a wind turbine individually and as part of a wind farm, if they are suggesting a million iterations. And modeling in the context of a wind farm with disrupted air flow is required, and in a variety of weather conditions.

    A decent simulation requires of the order of 10**5 core hours, so we are talking 10**11 for a million simulations, or 10**13 with a decent population, or 10**11 kWh. That's assuming each design gets a full simulation, though, so you might be able to reduce that by a couple of orders of magnitude. I'm also not convinced you'd run for a million iterations, so that might knock off one or two orders of magnitude.

    In any case, this isn't ML, it's a GA.

  44. Sadly, it can and does propel clmate change by Anonymous Coward · · Score: 0

    About 60 % of bitcoin mining (FOS) is done in China.

    They have the most stringent money export laws, the most rich people (in total), the most computing centers, the most coal burning power plants.

    And if you try to stop it, their bitcoins just go elsewhere.

  45. 10 ... 15 % of global co2 emissions are IN related by Anonymous Coward · · Score: 0

    Depending on the date and origin of studies, 10... 15 % of global co2 emissions are caused by IN related reasons (webserver running Apache, Wordpress,... ... ..., pcs running browsers, routers, WiFi stuff..., linux based stuff (game consoles, phones, iOT, ...)

    This margin would be *much* higher with commercial sw, but FOS isn't eco friendly per definition. Quit the opposite.

  46. Archimedes screw by bigtreeman · · Score: 1

    an Archimedes screw approaches theoretical maximum efficiency

    --
    Go well
  47. No, because it's already done well enough. by Ungrounded+Lightning · · Score: 5, Informative

    There is no point in hunting for a more efficient rotor design for two reasons:
      1) The current designs are so near perfect efficiency that there's little to be gained for a lot of effort.
      2) Efficiency of the rotor, once it's "good enough" is not a big deal. When your "fuel is free" except for the cost of the equipment to collect it, the significant measures of efficiency become "power per dollar spent on equipment" and "energy per dollar spent on maintenance and site and equipment amortization".

    As with the carnot limit on how much of the energy in heat can be extracted by a heat engine, there is a theoretical limit to how much of the kinetic energy you can extract from the air (or other compressible fluid) passing through a given swept area. It is called the "Betz limit". It is16/27ths, about 59.3%. It occurs because extracting energy from the wind slows it down, reducing the amount of air passing through the mill. It works like the laffer curve in tax rates: If you take no energy as the wind passes by, you get no energy. If you take all the energy you stop the wind, so you get no energy. Somewhere between there's a percentage of extraction that gets you the maximum. For wind, that's 16/27ths.

    As you approach the Betz limit you reach a point of diminisihing returns. You can throw progressively larger amounts of money into the design of your mill to get progressively smaller amounts of additional energy. Or you can spend a little extra money to just make your mill a little bigger, which lets it sweep a lot more area and collect a lot more energy.

    Modern 3-bladed horizontal-axis wind turbines (HAWTs), running at a tip speed ratio in the 6 to 7 range, get within a few percent of Betz perfection. (Higher TSR would get you a little more, but above 6 you're starting to get to where a storm could make the airflow near the tips go supersonic, which is a problem structurally.) Scaling them up gives you more power per unit cost, so the utility mills converged to giant 3-blade HAWTs.

    Horizontal axis because vertical axis designs tend to be either FAR less efficient or have terrible issues with vibration (though the helical darrius seems practical for small mills). The main advantage of a VAWT over a HAWT for small (i.e. off-grid residential/farm/small business) mills is that HAWTs need to be made to track the wind but "furled" in a high wind to avoid damage, which makes them more complex and failure prone. (HAWTs may need furling, too, but they don't need tracking and they're easier to overbuild to reduce the need for furling).

    Three blade because one blade (like a maple leaf) and two-blade have vibration problems when yawing to face a changing wind. Three or more do not. More blades don't buy you any extra efficIency so three is the least expensive to build.

    If you want to improve wind turbines you'd do well to concentrate on less expensive construction methods, rather than trying to chase the tiny amount of efficiency that's left.

    If you want to improve other aspects of renewable energy, there's more room for improvement in control, storage, photovoltaic designs, direct collection of heat, and cooling (including radiative coupling to the four-degree kelvin cosmic background temperature through the "infrared window").

    --
    Bantam Dominique roosters crow a four-note song. Once you've heard it as "Happy BIRTHday" you can't NOT hear it that way
    1. Re:No, because it's already done well enough. by Anonymous Coward · · Score: 0

      What about the Ugrinsky design, where it has both blades and channels?

      https://www.thingiverse.com/thing:996946

    2. Re:No, because it's already done well enough. by Anonymous Coward · · Score: 0

      Nice write-up. Thank you. Just one nitpick: It's not "four-degree kelvin", just "four kelvins".

    3. Re:No, because it's already done well enough. by Anonymous Coward · · Score: 0

      Thank you. Nice to read a comment from someone who knows what they're talking about, for a change..

    4. Re:No, because it's already done well enough. by stilrz · · Score: 1

      Cavitation is a another limit to how big a 21st century traditional windmill can be. Most windmills cut out around 25 MPH again limiting the power they can produce. Germany designed their windmills for total output of 32% of their power alas on a yearly basis only achieved 20% or so. Kites are an additional alternative. Winds are better between 500 feet and up to 3000 feet. The cost of string AND WEIGHT is relatively cheap compared to the large towers today. Less work has been done to harness that power.

    5. Re:No, because it's already done well enough. by Ungrounded+Lightning · · Score: 1

      What about the Ugrinsky design, where it has both blades and channels?

      Thanks. I hadn't seen that one.

      It looks like a derivative of, perhaps an improvement on, the Benesh ("Sandia Savonius") rotor, which claimed 37% efficiency in the patent, and (if I recall correctly) 39% in later research.

      I once calculated that a Benesh rotor of the same diameter as, about 4% taller than the diameter of, a good HAWT, would collect the same amount of wind power. (A VAWT has a rectangular swept area, so for the the same diameter and height as a HAWT it sweeps 4/pi times the area. Of course it's a bunch heavier, so you'd have "fun" erecting a 50-foot tower with one on it.)

      If this rotor really does come in about 41% to 46% it's getting into the ballpark of a halfway decent HAWT. And the geometry is even easier to construct than the Benesh / Sandia design.

      You have to be careful with ratings on VAWTs, however, if they're derived from wind tunnel tests. As the wind through the turbine in free air is slowed, the stream widens out. If you are testing INSIDE a wind tunnel (and it's not a whole bunch wider than the rotor), the tunnel restricts this spreading, forcing more of the air through the turbine, rather than letting it pass around. This makes the turbine seem much better than it is. In a tunnel with a square or rectangular cross-section the effect is more pronounced for VAWTs with rectangular swept areas than for HAWTs, which sweep a circle, too.

      If you look around the web you'll find test setups where the rotor is set up OUTSIDE the end of the tunnel, and somewhat downstream of it, to avoid this problem.

      (I note that the page you reference has a classic savonius at 20%, rather than 30%. It looks like another instance of the mislabled graph where the labels for the savonius and the "american multiblade" a.k.a. "patent windmill" were swapped.)

      --
      Bantam Dominique roosters crow a four-note song. Once you've heard it as "Happy BIRTHday" you can't NOT hear it that way
  48. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  49. Basic science software by guruevi · · Score: 1

    This thing is as far as I know neither commercially nor open source available. Maybe you can find some simulations programming languages but I would assume you will be writing the software.

    Given you're most likely looking at writing a paper rather than developing a company, your software will have to be open source so it can be properly peer reviewed.

    --
    Custom electronics and digital signage for your business: www.evcircuits.com
  50. No, but it can cause it by thegarbz · · Score: 1
  51. BeauHD Story Generator by Anonymous Coward · · Score: 0

    1. Take any random story off the web.
    2. Add a bit of technical jargon.
    3. Claim it will fight Climate Change.
    4. Profit!

  52. doubt it by houghi · · Score: 1

    As the fight is a social one, I doubt that this is the exception where a technical solution would work.

    --
    Don't fight for your country, if your country does not fight for you.
  53. Improved alternators! by banbeans · · Score: 1

    Improved alternators(they are not generators!) and reducing bearing friction will will bring a bigger gain.
    As far as that goes better bearings would improve energy use in many areas!

  54. Re:The global warming hoax by Lab+Rat+Jason · · Score: 1

    So what did he say about telling the truth enough times?

    --
    Which has more power: the hammer, or the anvil?
  55. Why would we want to? by Anonymous Coward · · Score: 0

    Even assuming its real, which it almost certainly is not, "climate change" (didnt that used to be "global warming", huh?) is all set to benefit me immensly. I live inland from the sea and in a fairly cold climate. I am FULLY armed, so economic migrants wont be able to attack my family, and I am well employed in a great career writing and maintaining software for other guys like me. If we need to we can even just form our own economic group to support each other on basic economics.

  56. Storage, not Generation is the Issue by foxalopex · · Score: 1

    There's plenty of renewable energy out there and our technology to extract it is for the most part is pretty good as it is. The biggest problem is a way to store this energy efficiently and cheaply. We have no solution for this at the moment. Power grids for example need to match usage exactly with generation at every instant. Don't do that and you start seeing brownouts (causing problems with consumer devices) or worse the generator blows up. Fossil Fuels are used for the reason that they're highly compact and huge sources of energy available on Demand. It's why they've been so difficult to get away from.

  57. Ask slashdot by Anonymous Coward · · Score: 0

    Can programmers take their heads out of their asses long enough to realize they're by and large not making the world a better place? The feel-good marketing bullshit coming from every silicon valley startup seems to have led to some kind of collective delusion in the field.

  58. software by pD-brane · · Score: 1

    is this task too complex for non-commercial software?

    or is it too complex for commercial software?

    In any case, commercial and FOSS are not mutually exclusive.

  59. Re:Unless your computer is powered by 100% renewab by Anonymous Coward · · Score: 0

    Yes. The "GreenCode" initiative. Start it:

    Java must die.
    Frameworks must die. .NET must die.
    c# must die.
    Javascript must die.

    Write efficient code. Don't be lazy. That is how FOSS can help in the fight against climate change. Think EnergyStar ratings on appliances. Create the same standards for code.

    Just think of the energy wasted by .NET and java.

  60. Re:Unless your computer is powered by 100% renewab by Anonymous Coward · · Score: 0

    Agree. The best way to fight Climate Change is to put an end to the folly that is the Information Age. No computers = no computer crime. No internet = no cyberbullying. It's that simple.

  61. Change the title of your post... by Anonymous Coward · · Score: 0

    Change the title of your post from how can we fight climate change with FOSS to "Optimizing wind turbine rotor design with FOSS".

  62. Please can we have some common sense about this! by Anonymous Coward · · Score: 0

    Can we be honest?

    No better than 10% of the world's probably can be solved well by technology. At least as a proximate solution or tool. 90% of the world's problems are generally made worse by technology if that's all you do! Instead most problems involve boring and yucky old interpersonal people-to-people meatspace skills. The very top one: sitting down with someone and just talking, or better listening, to them and then finding the cheapest solutions which pretty much NEVER involve technology but involve behaviors, agreements, rules, norms, and fairness.

    Why do I say this? Because I've been an engineer for nearly 40 years and the ONE THING that usually fucks both humanity and engineering is the misapplication of technology to problems that simply are NOT BEST SOLVED by technology. This is my direct experience as a "high priest of technology" during this time.

    If you are starting with a solution and looking for a problem, you are doing problem solving 100% wrong!

    if your first "go to" is technology for any problem, you are doing problem solving 100% wrong!

    if your first urge is NOT to involve the simple act of talking, face-to-face, you are doing problem solving 100% wrong!

    This is a case of when your own only tool is a hammer (e.g. technology), every problem looks like a nail. And that ONLY ends well, if your problem actually involves a nail.

  63. some assembly required by stilrz · · Score: 1

    with some assembly required

  64. Re: Rural America by Ferretman · · Score: 1

    Nice links, but I don't see any real answers to the questions AC above asked....?

    Ferret

    --
    Sic gorgiamus allos subjectatos nunc
  65. Yes, The Stupid Is Strong In OP by Anonymous Coward · · Score: 0

    Can FOSS help write a memo?
    Can FOSS help add up a column of numbers?
    Can FOSS get a person on the inter-webs???

    The Stupid is truly Strong here.

  66. You have no hope by Maxo-Texas · · Score: 1

    Already blew the 1.5 degree carbon budget. On track to blow thru the 2.0 degree carbon budget very soon (2024? 2027?)

    Wind power (and other alternative energy) is still good as are batteries that would allow coal plants to run at more efficient levels as are electric cars as are LED lighting solutions to reduce consumption.

    If you want to address climate change you need to either find a safe (switchable) way to block incoming energy in huge quantities or you need to find a safe way (i.e. again- you can turn it off) to rapidly extract carbon.

    For example, something that extracts carbon to make to rapidly make carbon fibers solid graphene would be useful.

    But you are talking about needing to sequester 17 gigatons of carbon annually starting in about 10 years from now just to avoid blowing the 2.0 degree carbon budget.

    Think larger.

    --
    She was like chocolate when she drank... semi-sweet at first and then increasingly bitter.
  67. Blanket statements FAIL by Anonymous Coward · · Score: 0

    The same people that are running around yelling global warming also hate it.

    No I don't. Been advocating for years. You should avoid stereotypes unless you enjoy looking like a partisan hack.

  68. Re: price the cost of energy so high by Anonymous Coward · · Score: 0

    The whole point of carbon tax is to introduce taxation to a global population. It is but a stepping stone towards a one world (fascist) government.

    (Sorry Al, it's 2018 and the polar ice caps are still there.)