Slashdot Mirror


User: wagnerrp

wagnerrp's activity in the archive.

Stories
0
Comments
2,465
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,465

  1. Re:capacity higher than Duracell AAA on Metal-Free 'Rhubarb' Battery Could Store Renewable Grid Energy · · Score: 1

    The difference is that a battery can hold a useful amount of energy.

    The difference is that this really isn't even a battery. It's a two-way fuel cell. The chemical reactor and energy storage parts are separate, allowing independent scaling of power output and storage capacity.

  2. Re:There must be a very good reason... on Utilities Fight Back Against Solar Energy · · Score: 1

    Do you honestly expect us to believe you have any idea how electricity functions when you quote values of daily total energy transfer, and expect that has anything to do with instantaneous effects seen on the grid?

  3. Re:There must be a very good reason... on Utilities Fight Back Against Solar Energy · · Score: 1

    A utility's peak power demands are typically from 3pm-6pm A solar customer is likely selling power back to the utility during this time (or at very least, using less than they would have), so the utility's peak requirements should certainly be less.

    A solar power user's peak output is from 9am-3pm. By the time the utility's peak period hits, the solar users have already begun to dwindle in output, and many will be drawing off the grid. By the time the peak period ends, solar users aren't generating much at all, and will be pulling nearly all their power off the grid. That's completely ignoring the fact that you can have cloudy days where solar users do nothing. Installed solar capacity on the grid does not change the amount of peak capacity a utility must have available. Capital investment is a significant percentage of the cost of electricity, so the less you use installed capacity, the less you have to amortize the cost over, and the more expensive the energy it produces becomes.

    This energy would need to be stored, but it's still energy that they don't need to generate themselves. With plug-in electric vehicles replacing gasoline, I don't think there's much danger of solar customers ever generating too much energy.

    Yes, the energy would need to be stored, which means a secondary storage system in your home. Batteries are expensive. If they weren't, utilities would be throwing them all over the place to absorb the power from base load plants and completely replace peak plants. Even if you're using gas turbines for base load, rotating machinery that never stops is much more reliable than rotating machinery that is frequently cycled.

    Most of those plug-in cars are going to be driven to work, and off site for the entire useful duration of a home solar installation, unavailable to operate as that storage system.

  4. Re: There must be a very good reason... on Utilities Fight Back Against Solar Energy · · Score: 1

    They also have to bump up your power from 110/220V to residential transmission voltage, and then deal with the phase imbalance because you're only feeding single phase. They're also doing it in mid-day, when the motel is largely empty besides cleaning staff, and really has very little power consumption to speak of.

  5. Re:No, entirely bad on Utilities Fight Back Against Solar Energy · · Score: 0

    we still have no workable solution for waste disposal

    Of course we do. Stop making so much waste.

    Of the fuel we use in reactors, roughly 3-4% is actually burned. Another few percent is transmuted into waste. There's still over 90% of perfectly good stuff left in the spent pellets. If we just use breeder reactors (which we've had since the dawn of the atomic age) and do nothing else, we're immediately looking at several times the amount of fuel burned, and thus several times less waste mass produced per unit energy.

    Now of that waste mass, discounting the remaining U-238 that could be recycled as fuel, only a few percent is dangerous enough to need long term storage, and would still remain in any significant quantity after a few decades of decay. Only that few percent would have to be disposed of, either through geological storage, transmutation to something less hazardous, or discarding out of our gravity well. If the government needs to subsidize something, they can bring back their waste reprocessing subsidies that Carter banned, and Reagan never reinstated.

  6. Re:As an organiser of events. on Is the World Ready For Facial Recognition On Google Glass? · · Score: 2

    Does that mean if you don't have a facebook profile, you cannot get in?

  7. Re:Unix command line in Tron Legacy on A Short History of Computers In the Movies · · Score: 1

    Technically, Linux. It even says "ENCOM LINUX CONSOLE" in the top left corner, and there's random Python and C++ on the left side.

  8. Re:The 780 pound? on Smooth, 6.5 Hour Spacewalk To Fix ISS Ammonia Pump · · Score: 1

    I never suggested using pounds as a unit of mass.

    http://slashdot.org/comments.pl?sid=4585781&cid=45765969

  9. Re:The 780 pound? on Smooth, 6.5 Hour Spacewalk To Fix ISS Ammonia Pump · · Score: 1

    Using pounds as a unit of mass is not sensible, as it is a scaled unit that must carry an arbitrary factor along with it if it is to be used in calculations.

  10. Re:780-pound module.... on Smooth, 6.5 Hour Spacewalk To Fix ISS Ammonia Pump · · Score: 1

    And yet, no self respecting engineer would use the pound-mass measure, as it complicates any calculations in the system by requiring the addition of a unitless gravitational constant term.

  11. Re:The 780 pound? on Smooth, 6.5 Hour Spacewalk To Fix ISS Ammonia Pump · · Score: 1

    This is a US based website. People in the US understand pounds of weight. They typically do not understand kilograms, and definitely do not understand slugs, of mass. Using pounds is the most sensible way to report it.

    In reference to the Earth at that altitude, it weighs around 700lbs. Space is not a "weightless environment". You cannot make such statements without specifying first that you're operating off the local space station reference frame.

  12. Re:The 780 pound? on Smooth, 6.5 Hour Spacewalk To Fix ISS Ammonia Pump · · Score: 1

    Pounds are a unit of weight, measured using a scale, not a balance. Slugs are a unit of mass. Pounds-mass is just retarded.

  13. Re:Why not just push the old one down to Earth on Smooth, 6.5 Hour Spacewalk To Fix ISS Ammonia Pump · · Score: 1

    Actually, atmospheric drag will finish the job. The ISS needs to get regular boosts, around once per month, to maintain altitude. It uses around seven tons of propellant each year for orbit maintenance. Now granted, this pump will be considerably denser than the ISS as a whole, and thus would descend slower, but re-entry would occur in under a decade.

  14. Re:780-pound module.... on Smooth, 6.5 Hour Spacewalk To Fix ISS Ammonia Pump · · Score: 1

    First, the pound is a unit of mass as well as a unit of force, thanks to our archaic English unit system. You can keep them apart by using pounds-force (lbf) and pounds-mass (lbm).

    No it isn't. A pound is a unit of force only. Our archaic English unit system uses the slug as a unit of mass.

  15. Re:Worth it. on Code.org Stats: 507MM LOC, 6.8MM Kids, 2K YouTube Views · · Score: 1

    Races and deadlocks are just really difficult to reason about. There are very few people in the world who can reason about them effectively.

    We get around that stuff by simply not having them. With no mutexes, you have no deadlocks, and the code is designed such that we don't care about race conditions. It's actually multi-process, rather than multi-threaded, due to a legacy holdover from older versions of QNX that didn't have a threading model. If one process gets to a data point before another process that edits it, we don't care, we'll just pick up the change in the next pass. If that data point changes twice before we get back to it, we don't care, as the transient nature meant the change wasn't important anyway. If the change was important, then we either run the process more frequently to catch those changes, or have a latching flag to indicate a change took place.

  16. Re:Seriously? on US Light Bulb Phase-Out's Next Step Begins Next Month · · Score: 1

    Also note this was central air he was investigating, not climate control for an individual room, so the units were about ten times that size.

  17. Re:Worth it. on Code.org Stats: 507MM LOC, 6.8MM Kids, 2K YouTube Views · · Score: 1

    No. If you are using individual memory allocations in C/C++, and overrun your array bounds, the MMU will kick back an access violation and the application will segfault. If you're pre-allocating one giant contiguous memory space to use for all your data, this protection no longer exists.

  18. Re:Seriously? on US Light Bulb Phase-Out's Next Step Begins Next Month · · Score: 1

    When is the last time you looked at the most efficient pumps?

    Maybe five years ago. One of my coworkers was investigating buying a new heatpump. The single-stage heat pumps he was looking at were only sufficient down to around 15-20F, after which he would take a serious efficiency hit as they kicked over to heating coils. He was trying to figure out whether it would be economical to spend the money on a dual-stage pump, or spend it on the few days out of a typical year we have single digit temperatures.

  19. Re:Worth it. on Code.org Stats: 507MM LOC, 6.8MM Kids, 2K YouTube Views · · Score: 1

    In most cases, one would segfault due to a memory access violation rather than escaping the bounds of their array. When you're pre-allocating a big chunk of contiguous memory, and letting 20-30 independent processes simultaneously use it, those protections are no longer in place.

  20. Re:Worth it. on Code.org Stats: 507MM LOC, 6.8MM Kids, 2K YouTube Views · · Score: 1

    Professionally, nearly all the bugs I see are simple typos (which you get regardless of your paradigm), logic faults dealing with real-world mechanics (more physics than programming), or buffer overruns (insufficient bounds checking, combined with a multi-process, shared memory framework). Everything else typically gets caught during a compile.

  21. Re:Yes Seriously on US Light Bulb Phase-Out's Next Step Begins Next Month · · Score: 1

    Screw luminous efficacy, nearly all of the "better" bulbs simply look like shit. Why can't I pay an energy premium to get the output spectrum I want?

  22. Re:Seriously? on US Light Bulb Phase-Out's Next Step Begins Next Month · · Score: 1

    Only a very expensive multi-stage heat pump is going to be able to heat a home to 70F from a -40F source. Everything else uses resistance heating to make up the slack on very cold days.

  23. Re:Seriously? on US Light Bulb Phase-Out's Next Step Begins Next Month · · Score: 1

    Do you have cheaper gas furnaces instead?

  24. Re:Worth it. on Code.org Stats: 507MM LOC, 6.8MM Kids, 2K YouTube Views · · Score: 3

    What bad habits? Logic of whatever type you want to implement is inherently sequential. Unless you want to delve into the complexity of branch prediction and predictive computation, it is the basis of all programming. The secret to parallel programming is nothing more than finding independent sequences of logic within the program, and arranging them such that they can be run concurrently.

  25. Re:will be interesting to see what they do with it on Google Acquires Boston Dynamics · · Score: 1

    BD's biggest issue was always, and still is, a power source. Their packbots that are supposed to support foot troops in the field need to be stealthy. You can't be stealthy if your very operation requires a noisy gasoline engine.