The advantage of a relational database is the ability to relate and index information. Most key-value systems don't provide that.
What you need to ask yourself is, does switching make sense for my intended use case?
You have kind of missed the point. The point is, you sometimes don't have an index (in the way you do with a general relational DB anyways). Even when you do have an index, the ability to relate it together is difficult and what relational databases excel at. What makes nosql key-value stores so quick is that you store and retrieve what you need in a key-based approach. You need that blurb on someone's profile page? Just go fetch it. No need to maintain a table with everything in it. NoSQL solutions have a number of novel structure which make many usecases trivially easy, e.g. Redis is a data-structure oriented DB well-suited to rapidly building anything with queues or its pub-sub architecture. MongoDB is a freeform document database which stores documents as JSON (BSON). BigTable solutions are a little less structured that that but expand the idea of a row to have families of columns — key value pairs contained in each row. You can build an inverted index on top of this with a technology like Apache Solr.
Not everything really needs to be tabular. Another major usecase of NoSQL is massive scale, many solutions (e.g. BigTable -- HBase/Cassandra) are designed to shard and scale horizontally easily (not so easy with SQL!). Cassandra in particular is designed for no SPOF. Unless you really need it, SQL generally is good enough.
There's advantages and disadvantages. Personally, I use a mix of both. Use the right tool for the right job but that may end up being PostgreSQL more often than not.
You can liken a key-value system to making an SQL table with two columns, a unique key and a value. This is quite fast. You have no need to do any relations or correlations or collation of data. Just find the value and return it. This is an oversimplification, NoSQL databases do have a lot of interesting functionality beyond simple K,V stores.
I do not think scientific data is well suited to most nosql implementations, but if you look at HBase or Cassandra, it may well suit a scientist's needs (with proper rowkey design -- timestamp must not be first, check out OpenTSDB). I know of many companies that store sensor readings in Cassandra by using a random-order partitioner and the UUID of the sensor.