Readit News logoReadit News
s_tec commented on CO2 Battery   energydome.com/co2-batter... · Posted by u/xnx
pragma_x · a month ago
My hunch is that they're doing this for three reasons.

1. Decompressing the gas can be used to do work, like turning a turbine or something. It's not particularly efficient, as you mention, but it can store some energy for a while. Also the tech to do this is practically off-the-shelf right now, and doesn't rely on a ton of R&D to ramp up. Well, maybe the large storage tanks do, but that should be all. So it _does_ function and nobody else is doing it this way so perhaps all that's seen as a competitive edge of sorts.

2. The storage tech has viable side-products, so the bottom-line could be diversified as to not be completely reliant on electricity generation. The compressed gas itself can be sold. Processed a little further, it can be sold as dry ice. Or maybe the facility can be dual-purposed for refrigeration of goods.

3. IMO, they're using CO2 as a working fluid is an attempt to sound carbon-sequestration-adjacent. Basically, doubling-down on environmentally-sound keywords to attract investment. Yes, I'm saying they're greenwashing what should otherwise be a sand battery or something else that moves _heat_ around more efficiently.

s_tec · a month ago
This is more of a compressed-air battery than a sand battery, except that the "air" is CO2 and it's "compressed" enough to cause a phase change.

Heat-based energy storage is always going to be inefficient, since it's limited by the Carnot efficiency of turning heat back into electricity. It's always better to store energy mechanically (pumping water, lifting weights, compressing gas), since these are already low-entropy forms of energy, and aren't limited by Carnot's theorem.

I don't know much about this CO2 battery, but I'm guessing the liquid-gas transition occurs under favorable conditions (reasonable temperatures and pressures). The goal is to minimize the amount of heat involved in the process, since all heat is loss (even if they can re-capture it to some extent).

s_tec commented on Nano-engineered thermoelectrics enable scalable, compressor-free cooling   jhuapl.edu/news/news-rele... · Posted by u/mcswell
s_tec · 2 months ago
Thermoelectric cooling is pretty inefficient, because the materials need to balance competing requirements:

- Good thermal insulator - Good electrical conductor - Good semiconductor

This is because the hot & cold sides are sandwiched closely together as a PN junction, so once you move heat from one side to the other, it just leaks right back. Mechanical cooling doesn't have this problem, because the hot & cold sides are separated by thin bits of tubing. This makes the thermal leakage a "minor annoyance" in a mechanical system as opposed to "literally the whole problem we're trying to solve" as it is with thermoelectrics.

One work-around is to stack lots & lots of thermoelectric coolers on top of each other. That reduces the temperature difference at each individual PN junction, which in turn lowers the leakage. That's what this team is doing, but using layers that are only a few nanometers thick, so they can fit dozens or hundreds of junctions in a single package.

s_tec commented on Sieving pores: stable,fast alloying chemistry of Si -electrodes in Li-ion batt   nature.com/articles/s4146... · Posted by u/bookofjoe
s_tec · 3 months ago
I'm not an expert, but my understanding is that silicon really loves to be with lithium, which makes it a really energy-dense anode material for batteries. It's also cheap and abundant. The problem is that absorbing lithium causes silicon to mechanically expand, which quickly destroys cell life. The anode physically crumbles away with repeated charging and discharging.

These researchers have found a way to make a silicon electrode like a sponge, which helps with the mechanical problems. Their test cell has pretty "normal" degradation of 80% capacity retention over 1700 cycles, which is incredibly good for silicon. Normally it would be in the 10's or 100's, iirc.

s_tec commented on Milwaukee M18 Battery Reverse Engineering   quagmirerepair.com/milwau... · Posted by u/jakogut
glitchc · 4 months ago
I'm not sure I follow. Aren't all lithium charging circuits basically the same nowadays, namely an SMC paired with a voltage pump or switching power circuit?
s_tec · 4 months ago
This isn't the charging circuit - that goes in the charger. This circuit is responsible monitoring the state-of-charge (for that little LED bar graph on the front), disconnecting the cells if something goes wrong, and negotiating available current with the tool. It should also be responsible for cell balancing, but it looks like Milwaukee forgot to implement that feature (oops).

The videos at the bottom of the article have most of the details, since those dive into the communications protocols as opposed to the raw schematics.

s_tec commented on Unix Time and a Modest Proposal   johndcook.com/blog/2024/1... · Posted by u/tapan_jk
s_tec · 8 months ago
This is an excellent idea! It would probably make the most sense to perform these adjustments on April 1.
s_tec commented on Air traffic failure caused by two locations 3600nm apart sharing 3-letter code   flightglobal.com/safety/u... · Posted by u/basilesimon
s_tec · 9 months ago
I assumed the post title meant nanometers. Why? Floating-point rounding bugs. A nanometer is about 9e-15 degrees of latitude, which is right about where a double-precision floating point number runs out of digits. So, if a piece of software uses exact `==` equality, it could easily have a bug where two positions 3600 nanometers apart are seen as being different, even though they should be treated as the same.
s_tec commented on New Architecture is here   reactnative.dev/blog/2024... · Posted by u/stigi
ramesh31 · 10 months ago
Is there any sane way of using RN without locking into the Expo ecosystem? Last I checked it was a nightmare dealing with native dependencies otherwise.
s_tec · 10 months ago
React Native added auto-linking years ago, which solved the native dependency problems. Just `yarn add` whatever you need, and if it has native code, the the Android side will incorporate it on the next build. On the iOS side, you do have to run `pod install` to lock in the changes, but everything after that is automatic.

Use Expo because you like the extra features it ships with, but not because you have problems with native dependencies. The React Native built-in experience is pretty much perfect to start with.

s_tec commented on Adding 16 kb page size to Android   android-developers.google... · Posted by u/mikece
stingraycharles · a year ago
I’m a total idiot, how exactly is page size a CPU issue rather than a kernel issue? Is it about memory channel protocols / communication?

Disks have been slowly migrating away from the 4kb sector size, is this a same thing going on? That you need to actual drive to support it, because of internal structuring (i.e. how exactly the CPU aligns things in RAM), and on some super low level 4kb / 16kb being the smallest unit of memory you can allocate?

And does that then mean that there’s less overhead in all kinds of memory (pre)fetchers in the CPU, because more can be achieved in less clock cycles?

s_tec · a year ago
Each OS process has its own virtual address space, which is why one process cannot read another's memory. The CPU implements these address spaces in hardware, since literally every memory read or write needs to have its address translated from virtual to physical.

The CPU's address translation process relies on tables that the OS sets up. For instance, one table entry might say that the 4K memory chunk with virtual address 0x21000-0x21fff maps to physical address 0xf56e3000, and is both executable and read-only. So yes, the OS sets up the tables, but the hardware implements the protection.

Since memory protection is a hardware feature, the hardware needs to decide how fine-grained the pages are. It's possible to build a CPU with byte-level protection, but this would be crazy-inefficient. Bigger pages mean less translation work, but they can also create more wasted space. Sizes in the 4K-64K range seem to offer good tradeoffs for everyday workloads.

s_tec commented on Artificial Intelligence and Peace   vatican.va/content/france... · Posted by u/sirpenguin
monkeynotes · 2 years ago
> It makes me immensely sad that people have so many misconceptions about Catholics.

What are these misconceptions? Catholicism uses shame to induce conformity, has had numerous priests abuse children (and protecting the offenders), has a long history of violence against non-adherents, historically deeply homophobic, and so on. All of that is factual.

Edit: Oh! And now I remember, they killed and buried hundreds of children in Canada at their "schools" for indigenous people. Graves unmarked, families never knew what happened to the kids. But it's OK! Pope here said sorry, sort of, after being pressured, for decades. Also they found graves. Canadian govt. couldn't give a rats ass because the church is as powerful as governments.

But remember! We love all of God's children.

s_tec · 2 years ago
Just because some people do bad things does not mean you get to paint the whole group with those crimes. Imagine if you had said, "Black people are criminals, because a black person robbed the liquor store down the street last week." We all (hopefully) recognize the deep racism in this statement!

Unfortunately, there are parts of the country where this type of racism is acceptable and even common. There as similar attitudes towards Catholics, due to America's history as a predominately protestant country. The formula is the same both way - pick a heinous crime from a few members, blame it on the group as a whole, and feel smug about yourself.

s_tec commented on BMW EV achieves 1000km in range using Dual-Chemistry batteries   forbes.com/sites/samabuel... · Posted by u/ramboldio
natch · 2 years ago
The UI should be: you plug in and it gives you power and your credit card pays automatically. Done.

You never need to touch or see your credit card or phone at any time before, during, or after the charging process.

Guess what kind of EVs work this way already.

s_tec · 2 years ago
Nah. When I am taking a road trip, the last thing I want to do register an account for some random charging network I'm never going to use again (because I'm in a different part of the world). I just want to pay for my power and move on, just like I can pay for food or anything else on the trip.

When I am at home, I plug my car in and it goes on my monthly power bill. This is where the convenience matters.

u/s_tec

KarmaCake day642June 8, 2008View Original