Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re:Nice and all, but where's the beef? (Score 1) 127

Take a look, there is some neat stuff going on with Blue Waters: https://bluewaters.ncsa.illino...

Most science is not breakthroughs; it's usually slow progress, with many failed experiments.

These computers are facilitating a lot of good science and increases like this in our computational infrastructure for research is great news. I do wonder how they are going to power this beast and what kind of hardware it will be made of. 300 PFlop is pretty unreal with today's technology.

Comment Re:Some technical info for slashdotters (Score 1) 61

As a visualization guy, it always makes me happy to see such a good use of visualization. Thanks for providing some extra technical details here! A couple of questions, though:

1) What grid type does your simulation code use? If it's regular grid, have you considered switching to something more adaptive like AMR or unstructured grids?

2) Since I/O is your main bottleneck, have you considered further decimating your output and visualizing in situ to fill in the gap? I suspect your visual analysis is too complicated for current in situ techniques to cover everything you want to do, but I'd like to hear your thoughts on it.

It's isotropic (delta x = delta y = delta z) for most of the storm, and then uses an analytical stretch function to determine the mesh outside of that region. I used the stretch technique of Wilhelmson and Chen (1982; Journal of the Atmospheric Sciences).

AMR has its benefits but adds a lot of complexity, and I tend to wish to go towards less complex, not more. I am more interested in these new heaxongal grids (see: NCAR's MPAS) which have very nice properties. I predict MPAS will be the Next Big Thing and will apply to both large-scale (say, climate) and mesoscale (like CM1) models eventually.

In-situ visualization was something we have played with. But I don't see a huge benefit to me, other than showing that it can be done. The simulation I reported on was not the first try and visualizing it with volume renderer during the simulation would have been cool but consider the fact that I've had the data on disk for over six months and have barely begun to mine it. So really, it's what you do with the data once it's on disk that matters... plus you can visualize it in all sorts of different ways.

I have other ways to see what's going on during the simulation that are near-real time. All I need to know during the simulation is that the storm is not drifting out of the box, and that it's doing something that looks reasonable. I do this with parsing the text output of the model (that spits out global statistics periodically) and I have a way to view slices of the data that was just written that works just fine.

Comment Re:Some technical info for slashdotters (Score 1) 61

I got about halfway through the video before the kids interrupted me (and it). So let me just ask:

Did your model take into account the energy gathering and discharge that would show a multi-amp, million-volt DC discharge? Because the energy implications of that are going to be enormous to the model.

Did it also have a mechanism that generated the lightning discharges of the storm? Because again, the lightning discharges are going to affect the electrical energy available to help / hinder the tornado.

No lightning in the model. I know of some research on modeling lightning in supercells, but I'm pretty sure they are one-way models; the lightning occurs based upon what we know about inductive and non inductive charge mechanisms, and flashes can happen - but they do not feed back into the storm. I don't think they probably feed back appreciably into real storms. Even though a lot of energy is released with lightning, so much more is released due to latent heating (phase changes between solid/liquid/gas) that really drive thunderstorms.

Comment Re:Some technical info for slashdotters (Score 1) 61

Trying to make a model that only focuses on the critical parts of a storm would be like trying to make a model of a car that only focused on one piston.

Good insight in all your comments. Actually, tornado modeling has a long history. Think of those vortex chambers you see at some museums etc... pioneers like Neil Ward studied tornadoes in this manner. Now, think of a numerical model of one of those chambers. This type of work has been done by folks like David Lewellen at West Virginia University.

What makes this new simulation special is that we've simulated the entire storm and allowed "things to evolve naturally" (for a very judicious interpretation of what "natural" is). One could argue that the tornado is actually not the most interesting part of the simulation, but that the processes leading to its formation, and what is going on in the supercell thunderstorm to support the tornado's long life, are the most interesting parts.

Comment Re:Some technical info for slashdotters (Score 1) 61

At the resolution I'm running at: decades, and this would require improvements in algorithms / hardware utilization, as well as finding a way to build and utilize machines on the exascale. Going from petascale to exascale is going to require methods/topologies that don't exist yet, I think (not just GPUs for example). And exascale power requirements are a real problem with existing hardware.

At "convection resolving" simulations (on the order of 1 km resolution - not 30 meters!) where a tornado-like vortex might form and serve as a proxy for a real tornado: That's much closer, and there are different efforts going on right now aiming towards that goal. The biggest hurdle I see is getting enough observational data to feed to the models; otherwise you end up with garbage in / garbage out. Remote sensing is the way to go with some quantites but with others there is really no substitue for in-situ measurements, and instrumentation at the scale we need is expensive.

Comment Some technical info for slashdotters (Score 5, Interesting) 61

I wanted to give some info on the technical aspect of getting this to work that might be appreciated by slashdotters.

You can read about the Blue Waters hardware profile here. Our simulation "only" utilized 20,000 of the approximately 700,000 processing cores on the machine. Blue Waters, like all major supercomputers, runs a Linux kernel tuned for HPC.

The cloud model, CM1, is a hybrid MPI/OpenMP model. Blue Waters has 16 cores (or 32 depending on how you look at it) per node. We have 16 MPI processes going and each MPI rank can access two OpenMP threads. Our decomposition is nothing special, and it works well enough at the scales we are running at.

The simulation produced on the order of 100 TB of raw data. It is easy to produce a lot of data with these simulations - data is saved as 3D floating point arrays and only compresses roughly 2:1 in aggregate form (some types of data compress better than others). I/O is a significant bottleneck for these types of simulations when you save data very frequently, which is necessary for these detailed simulations, and I've spent years working on getting I/O to work sufficiently well so that this kind of simulation and visualization was possible.

The CM1 model is written in Fortran 90/95. The code I wrote to get all the I/O and visualization stuff to work is a combination of C, C++, and Python. The model's raw output format is HDF5, and files are scattered about in a logical way, and I've written a set of tools to interface with the data in a way that greatly simplifies things through an API that accesses the data at a low level but does not require the user to do anything but request data bounded by Cartesian coordinates.

I would have to say the biggest challenge wasn't technical (and the technical challenges are significant), but was physical: Getting a storm to produce one of these types of tornadoes. They are very rare in nature, and this behavior is mirrored in the numerical world. We hope to model more of these so we can draw more general conclusions; a single simulation is compelling, but with sensitivity studies etc. you can really start to do some neat things.

We are now working on publishing the work, which seems to have "passed the sniff test" at the Severe Local Storms conference. It's exciting, and we look forward to really teasing apart some of these interesting processes that show up in the visualizations.

Submission + - Simulated monster EF5 tornado produced by researchers

Orp writes: I am the member of a research team that created a supercell thunderstorm simulation that is getting a lot of attention. Presented at the 27th Annual Severe Local Storms Conference in Madison, Wisconsin, Leigh Orf's talk was produced entirely as high def video and put on youtube shortly after the presentation. In the simulation, the storm's updraft is so strong that it essentially peels rain-cooled air near the surface upwards and into the storms updraft, which appears to play a key role in maintaining the tornado. The simulation was based upon the environment that produced the May 24, 2011 outbreak which included a long-track EF5 tornado near El Reno Oklahoma (not to be confused with the May 31, 2013 EF5 tornado that killed three storm researchers).

Comment Re:They used to be called UHF TV tuners (Score 1) 237

I never did that but a long time ago (80s) I did listen to some fascinating conversations broadcast in the clear around 1.7 MHz - just past the AM band - off of a cordless phone somewhere near my neighborhood. I had an old Hallicrafters shortwave radio that weighed nearly as much as I did (even more with the big external speaker). I don't remember the details of the conversations, only that it was mostly stupid stuff as would be expected.

Comment $150k? (Score 1) 220

I do most of my research on supercomputers. "Servcie Units" (SU's) are the currency on these machines. They are usually either node hours or core hours. Typical allocations are in the hundreds of thousands to millions of SUs.

I don't know what formula they used to come up with a dollar value. It would be nice to know, however, as I am in academia where real dollar grants get all the attention since they come with that sweet overhead. I'm sure my dean would appreciate the symbolism of getting the college overhead in SU's (and converting them to dollars).

But seriously, these machines are up 24/7 (unless down for hardware fault or maintenance) and while I'm sure they draw more current when the CPU is pegged if this guy was mining bitcoins with his allocation then really all he did was go against the terms of his allocation. Those SUs would have either been wasted or used up anyway. But you just don't mine bitcoin on federal supercomputers, man. Dick move.

I hope he at least used GPU accelerators with his code, the bastard.

Comment Hate Variable Air Contraption (Score 1) 216

I have had an office in three different buildings on campus of my university. The first office was fine. I had a situation in the second building where the noise was in violation of Eurpoean Union standards for noise (I had the level measured with a SPL meter) but a couple of dB too low for OSHA. It was maddening; for months I begged facilities to address the issue. The office suite I was in had been converted from a lecture hall and there was this major HVAC hub above my desk, and it turned out they had the pressure way to high flowing through the vents. I wore earplugs a lot.

In the third building I am in, I have a situation where the temperature fluctuates about 15 degrees F daily. Yes, I measured this and plotted it with a little weather tracker. In this case, the thermostat for the office is located in another office. And the university spent hundreds of thousands of dollars to renovate this old building. I guess that's what happens when you always take the lowest bidder.

I am rather sensitive to noise so I'd rather have the fluctuation temperatures in a quiet office than pleasant temperatures in a noisy office, and I understand that when you remodel you might get weird results like this. But that doesn't stop me from wanting to strangle people.

Comment Re:Does anyone even use Google's office suite? (Score 3, Informative) 89

I use it for "simple" stuff - for instance, it's very convenient to have a place to take notes at meetings (I do a lot of that with my job). Since I always have wifi where I work it's just a matter of opening up the Drive website and creating a new document. And then everything's in one place and it's easy to find stuff with Google's search, which works on document names and document contents.

I do create some "production quality" documents from within the Docs world, and export them to PDF or DOCX so I can share. But these documents are generally simple; the complex stuff I do in LaTeX. I really do not like Word with its seven thousand ways to frustrate me and the weird layout that I've never really gotten used to since they majorly changed it years ago. Libreoffice and Google's docs editor are nice and relatively simple and I find them easier to use. But I go back to Word when I have to which is frequently since "everyone" seems to use it.

It's convenient to have the ability to open attachments (from Gmail) in Drive/docs for quick viewing, but stuff created in Microsoft's Office doesn't always convert very well.

I fully realize what Google is doing by "sucking me in" to their world and having everything I do be stored on their servers. Ever since I bought a Chromebook Pixel and got the 1 TB of Drive space, I'm always finding ways to use it. I know they just want to harvest everything I do - so for the sensitive stuff I have an encrypted (ecryptfs) partition with Dropbox that I can mount on my Linux machines, and for wholesale archival storage of sensitive stuff I use PGP and stick it wherever. If Google Drive allowed the ability to mount the drive partition under Linux like Dropbox does, I would probably "drop the box" altogether.

Comment The Why (is obvious) (Score 1) 2219

If you want to know "why" do a Google Trends search on slashdot. You see something that looks like e^-x, asymptoting towards zero.

It's pretty bloody obvious what's going on. A company has a unique asset, this asset is not making them money. I can sort of sympathize with this. You gotta pay the bills, right? So they try to broaden their audience (no quotations, I get that too). But as all the old timers have said - repeatedly - they only come to the site for the comments, and WE ARE THE MOTHERFUCKING COMMENTS. This has to drive marketing nuts, I suppose. There are a bunch of other more "fun" sites out there where idiots can blather on about crap. Slashdot is unique in that it has a highly technical/educated audience and a good moderation system (hah, I remember the uproar over the current comment system when it first came out, or was tweaked - somehow people DO get used to these things!).

I think the reason why you're not seeing Dice or whoever ask for the opinion of the current folks who use slashdot, is that they already know the answer. It's not about you/us - it's about getting new people on board. The problem is, that is a losing proposition. Slashdot's readership/writership really goes back to the USENET days of absolutely no moderation and a has a free-for-all meritocracy mentality. Slashdot has been around for long enough that I think your audience has already found you. We're already here. We are middle-aged highly educated highly opinionated nerds who have dealt with enough corporate horseshit to see through these things. Sorry about that.

There is a pretty high level of childish vitriol that permeates this site. If you don't at least throw us a few crumbs a lot of the crap that goes on at -1 will get a hell of a lot worse. Your audience will turn against you and that will drive away the folks who make the site work. There are alternatives. Christ, with the dwindling number of commenters, you could probably host a slashdot-like site on any of the many cloud server type places out there.

Tread carefully, corporate folks. And it wouldn't hurt if you just accepted the fact that slashdot isn't something that's going to make you money. Maybe you can leverage slashdot in other ways to sell other stuff, I don't know. But if you fuck with your nerdbase they will fuck with you twice as hard. I don't envy your position and I truly hope you find a solution that meets your objectives... keeping the old timers happy while injecting a few audience base. But you should probably try a new approach. Have you considered sending out a survey-monkey type thing to gauge exactly what the old timers are willing to concede/put up with rather than just dumping it on us?

Comment Re:Before this turns into a derpfest... (Score 1) 320

His comment sounds like utter bullshit though. You can put all the CO2 in an atmosphere you want. If you don't have solar flux the heat on the surface will be minimal. One good example is Mars. There have been plenty of examples along history of temperatures decreasing by more than .1 or .3 Celsius even when there were no humans on the planet.

Ok Dr. Bagel. You win. I'll go burn my diploma, tell my colleagues at NCAR to eat a bag of dicks, and await your clearly superior intellect to publish that which is something other than 'utter bullshit'.

Since you are clearly an expert on the subject of the sound of bullshit, please, o wise one: Exactly what does utter bullshit sound like? As opposed to just plain bullshit? Do the flies buzz louder?

Slashdot Top Deals

He has not acquired a fortune; the fortune has acquired him. -- Bion

Working...