开发者

Is this data appropriate for keeping in a database?

开发者 https://www.devze.com 2022-12-20 17:07 出处:网络
In relation to my previous question where I was asking for some database suggestions; it just occured to me that I don\'t even know if what I\'m trying to store there is appropriate for a database. Or

In relation to my previous question where I was asking for some database suggestions; it just occured to me that I don't even know if what I'm trying to store there is appropriate for a database. Or should some other data storage method be used.

I have some physical models testing (let's say wind tunnel data; something similar) where for every model (M-1234) I have:

name (M-1234)  
length L  
breadth B  
height H  
L/B ratio  
L/H ratio  
...  
lot of other ratios and dimensions ...
force versus speed curve given in the form of a lot of points f开发者_运维知识库or x-y plotting  
...  
few other similar curves (all of them of type x-y).

Now, what I'm trying to accomplish is store that in some reasonable way, so that the user who will be using the database can come and see what are the closest ten models to L/B=2.5 (or some similar demand). Then for that, somehow get all the data of those models, including the curve data (in a plain text file format).

Is a sql database (or any other, for that matter) an appropriate way of handling something like this ? Or should I take some other approach ?

I have about a month to finish this, and in that time I have to learn enough about databases as well, so ... give your suggestions, please, bearing that in mind. Assume no previous knowledge on the subject, whatsoever.


I think what you're looking for is possible. I'm using Postgresql here, but any database should work. This is my test database

CREATE TABLE test (
    id serial primary key,
    ratio double precision
);
COPY test (id, ratio) FROM stdin;
1   0.29999999999999999
2   0.40000000000000002
3   0.59999999999999998
4   0.69999999999999996
.

Then, to find the nearest values to a particular ratio

select id,ratio,abs(ratio-0.5) as score from test order by score asc limit 2;

In this case, I'm looking for the 2 nearest to 0.5

I'd probably do a datamodel where you have one table for the main data, the ratios and so on, and then a second table which holds the curve points, as I'm assuming that the curves aren't always the same size.


Yes, a database is probably the best approach for this.

A relational database (which usually uses SQL for data access) is suitable for data that is more or less structured as tables.

To give you an idea:

You could have a main table model with fields name, width etc. . Then subtable(s) for any values which can appear more than once, which refers back to model (look up "foreign key").

Then a subtable for your actual curves, again refering back to model.

How to actually model the curves in the DB I don't know, as I don't know how you model them. But if its lots of numbers, it can go into the DB.

It seems you know little about relational DBMS. Consider reading something on WIkipedia, or doing a few simple DBMS tutorials (PostgreSQL has some: http://www.postgresql.org/docs/8.4/interactive/tutorial.html , but there are many others). Then pick a DBMS for trying out (PostgreSQL is probably not a bad choice, but again there are many others).

Then try implementing a simple table schema, and get back to us with any detail questions (which you'll probably have).

One more thing: Those questions are probably more appropriate to serverfault.com.


This is arguably scientific data: you might find libraries/formats intended for arbitrary scientific data useful: HDF5 http://www.hdfgroup.org/ (note I am not an expert)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号