Posts by gismoat

11) Message boards : Science : Detector Defect (Message 3333)
Posted 3181 days ago by gismoat
Hi,
I get the Detector as assembled, so i dont know where i can order a new tube.
Does anyone know where I can re-order it?

thanks
Werner
12) Message boards : Science : Detector Defect (Message 3330)
Posted 3182 days ago by gismoat
Hi all,
thanks for the lot of answers.
The damage to the tube did not occur until after the failure.
I would like turn off with my fingers from the holder and i gripping in the middel of the tube, so i think that was not a good idea.



Whats your think should i try a mesure?
See for an example is the measurement so right?


The black pen is between the both resistors are the ones with brown, black, black, green, brown stripes.
13) Message boards : Science : Detector Defect (Message 3324)
Posted 3182 days ago by gismoat
Hi,

i have checked the platine but i cant find the R15 and R16 resistors.
Could you tell me how i should check the Voltage?
My voltmeter is only for max 250 Volts.



thanks Werner
14) Message boards : Science : Detector Defect (Message 3320)
Posted 3184 days ago by gismoat
Hi KarmannGaz,

my Detector have working 1 year without any trubbles but since one month i can see only 0,0 uSV on the Display.
I have a voltmeter but i dont know if i can check high voltage with my voltmeter.
Could you see on the pictuer if i can check high voltage?



thanks
Werner
15) Message boards : Science : Detector Defect (Message 3318)
Posted 3187 days ago by gismoat
Hi,
i have a Detector V2.60 from the second pach.
Since one Month i get only 0,0 uSV on the Display.
The Geiger tube is connected but i cannot see any issue.
Finde attached pictures from the Kit.




thanks for your help
Werner
16) Message boards : Science : Data logging in offline mode (Message 2970)
Posted 3429 days ago by gismoat
Hello,

quick question, how could i use this script? Does he need a plugin for Boinc?

thanks
Werner
17) Message boards : Number crunching : Raw data export (Message 2939)
Posted 3499 days ago by gismoat
Hello,

i get an error when i use the Query on my MySQL DB.
I using the SQL Software-Version: 5.1.61 - Source distribution Protokoll-Version: 10

After start the query i get following error.

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'header('content-type: text/plain')' at line 1


Using following Script with my stationsID.

header('content-type: text/plain');
$rows_inserted = 1; //zeby wystartowac petle
$num_updates = 0;
while ($rows_inserted > 0 and $num_updates < 20) {
$result = mysql_query("SELECT MAX(id) FROM trickles_lite") OR die(mysql_error());
if (mysql_num_rows($result) == 0) {
$max_id = 0;
}
else {
$wynik = mysql_fetch_row($result);
$max_id = $wynik[0];
}
echo "Last local trickle id: $max_id\n";

$content = file_get_contents("http://radioactiveathome.org/boinc/gettrickledata.php?start=0&hostid=12104");
$content_array = explode("\n",$content);
if ($content_array[0] == "NO DATA") die("Remote server returned empty document");
$first_line = explode(":",$content_array[0]);
$remote_min_trickle_id = $first_line[0];
$remote_max_trickle_id = $first_line[1];
$content_size = sizeof($content_array);
echo "$content_size lines of data\n";
echo "Remote data min id: $remote_min_trickle_id, max id: $remote_max_trickle_id\n";
$rows_inserted = 0;
for ($i=1;$i<$content_size;$i++) {
if ($content_array[$i] == "NO DATA") continue;
$line_content = explode(",",$content_array[$i]);
$tdata_id = $line_content[0];
$tdata_hostid = $line_content[1];
$tdata_pomiar_raw = $line_content[2];
$tdata_data = $line_content[3];
$tdata_loc1 = $line_content[4];
$tdata_loc2 = $line_content[5];
$tdata_czas_pomiaru = $line_content[6];
$tdata_typ_pomiaru = $line_content[7];
$tdata_eksperyment = $line_content[8];
$tdata_revision_int = $line_content[9];
$tdata_vid_pid_int = 0; //to be changed later
if ($tdata_id) {
mysql_query("INSERT INTO trickles_lite vALUES($tdata_id,$tdata_hostid, $tdata_pomiar_raw, '$tdata_data', $tdata_loc1, $tdata_loc2, $tdata_czas_pomiaru, '$tdata_typ_pomiaru', $tdata_eksperyment, $tdata_revision_int, $tdata_vid_pid_int)") OR die(mysql_error());
$rows_inserted++;
}
}
echo "$rows_inserted records written to the local db\n";
$num_updates++;
} //while
18) Message boards : Number crunching : Raw data export (Message 2936)
Posted 3501 days ago by gismoat
Here's my script that I use to pull the new data, it's not commented at all but should be easy to understand anyway.
For performance reasons it's set to stop after 20 iterations (so each run it pulls up to 100k records) or when there's no more data available.


header('content-type: text/plain');
$rows_inserted = 1; //zeby wystartowac petle
$num_updates = 0;
while ($rows_inserted > 0 and $num_updates < 20) {
$result = mysql_query("SELECT MAX(id) FROM trickles_lite") OR die(mysql_error());
if (mysql_num_rows($result) == 0) {
$max_id = 0;
}
else {
$wynik = mysql_fetch_row($result);
$max_id = $wynik[0];
}
echo "Last local trickle id: $max_id\n";

$content = file_get_contents("http://radioactiveathome.org/boinc/gettrickledata.php?start=$max_id");
$content_array = explode("\n",$content);
if ($content_array[0] == "NO DATA") die("Remote server returned empty document");
$first_line = explode(":",$content_array[0]);
$remote_min_trickle_id = $first_line[0];
$remote_max_trickle_id = $first_line[1];
$content_size = sizeof($content_array);
echo "$content_size lines of data\n";
echo "Remote data min id: $remote_min_trickle_id, max id: $remote_max_trickle_id\n";
$rows_inserted = 0;
for ($i=1;$i<$content_size;$i++) {
if ($content_array[$i] == "NO DATA") continue;
$line_content = explode(",",$content_array[$i]);
$tdata_id = $line_content[0];
$tdata_hostid = $line_content[1];
$tdata_pomiar_raw = $line_content[2];
$tdata_data = $line_content[3];
$tdata_loc1 = $line_content[4];
$tdata_loc2 = $line_content[5];
$tdata_czas_pomiaru = $line_content[6];
$tdata_typ_pomiaru = $line_content[7];
$tdata_eksperyment = $line_content[8];
$tdata_revision_int = $line_content[9];
$tdata_vid_pid_int = 0; //to be changed later
if ($tdata_id) {
mysql_query("INSERT INTO trickles_lite vALUES($tdata_id,$tdata_hostid, $tdata_pomiar_raw, '$tdata_data', $tdata_loc1, $tdata_loc2, $tdata_czas_pomiaru, '$tdata_typ_pomiaru', $tdata_eksperyment, $tdata_revision_int, $tdata_vid_pid_int)") OR die(mysql_error());
$rows_inserted++;
}
}
echo "$rows_inserted records written to the local db\n";
$num_updates++;
} //while


Hi TJM,
could you post the complette php script?
And it is possible to tell us what should we do when i would like inport in to the sql database.

thanks
Werner
19) Message boards : Number crunching : sample data export (Message 2935)
Posted 3501 days ago by gismoat
Hi,

thats are raw data and i dount know what should be do with this data.
On the sample i cannot find uSv/h value data.

206910065,12104,19,2014-09-03 10:39:25,47.841274,13.254428,2.302,r,0,608

thanks
Werner

20) Message boards : Number crunching : sample data export (Message 2930)
Posted 3504 days ago by gismoat
Hello,

do i have a possibility to export finished sample data as txt or in a sql?

For example:
I can see in my profile the task 3878547 with sample "sample_3859263_0"

Stderr output
<core_client_version>7.2.42</core_client_version>
<![CDATA[
<stderr_txt>
Radac $Rev: 585 $ starting...
sensors.xml: 7 nodes found
Found sensor v2.60
19522,6,2014-9-30 8:9:24,f,0.3 minutes,18.4 cpm,0.11 uSv/h
259032,58,2014-9-30 8:13:24,n,4.0 minutes,13.0 cpm,0.08 uSv/h
499678,118,2014-9-30 8:17:24,n,4.0 minutes,15.0 cpm,0.09 uSv/h
738872,174,2014-9-30 8:21:24,n,4.0 minutes,14.0 cpm,0.08 uSv/h
979457,230,2014-9-30 8:25:24,n,4.0 minutes,14.0 cpm,0.08 uSv/h
1219122,292,2014-9-30 8:29:24,n,4.0 minutes,15.5 cpm,0.09 uSv/h
1459126,343,2014-9-30 8:33:24,n,4.0 minutes,12.7 cpm,0.07 uSv/h
Trickle sent
1699034,401,2014-9-30 8:37:24,n,4.0 minutes,14.5 cpm,0.08 uSv/h
1939364,464,2014-9-30 8:41:24,n,4.0 minutes,15.7 cpm,0.09 uSv/h
2179882,529,2014-9-30 8:45:24,n,4.0 minutes,16.2 cpm,0.09 uSv/h
2419610,600,2014-9-30 8:49:24,n,4.0 minutes,17.8 cpm,0.10 uSv/h
2659207,659,2014-9-30 8:53:24,n,4.0 minutes,14.8 cpm,0.09 uSv/h
2899101,709,2014-9-30 8:57:24,n,4.0 minutes,12.5 cpm,0.07 uSv/h
Trickle sent
3140108,757,2014-9-30 9:1:25,n,4.0 minutes,11.9 cpm,0.07 uSv/h
3380614,797,2014-9-30 9:5:25,n,4.0 minutes,10.0 cpm,0.06 uSv/h
3620884,868,2014-9-30 9:9:25,n,4.0 minutes,17.7 cpm,0.10 uSv/h
3860752,936,2014-9-30 9:13:25,n,4.0 minutes,17.0 cpm,0.10 uSv/h
4100869,1004,2014-9-30 9:17:25,n,4.0 minutes,17.0 cpm,0.10 uSv/h
Trickle sent
4341124,1054,2014-9-30 9:21:25,n,4.0 minutes,12.5 cpm,0.07 uSv/h
4581281,1114,2014-9-30 9:25:26,n,4.0 minutes,15.0 cpm,0.09 uSv/h
4822018,1168,2014-9-30 9:29:26,n,4.0 minutes,13.5 cpm,0.08 uSv/h
5062018,1215,2014-9-30 9:33:26,n,4.0 minutes,11.8 cpm,0.07 uSv/h
5301995,1269,2014-9-30 9:37:26,n,4.0 minutes,13.5 cpm,0.08 uSv/h
Trickle sent
5541926,1330,2014-9-30 9:41:26,n,4.0 minutes,15.3 cpm,0.09 uSv/h
5782035,1387,2014-9-30 9:45:26,n,4.0 minutes,14.2 cpm,0.08 uSv/h
6022212,1435,2014-9-30 9:49:26,n,4.0 minutes,12.0 cpm,0.07 uSv/h
6262029,1484,2014-9-30 9:53:26,n,4.0 minutes,12.3 cpm,0.07 uSv/h
6502095,1545,2014-9-30 9:57:26,n,4.0 minutes,15.2 cpm,0.09 uSv/h
6742130,1614,2014-9-30 10:1:26,n,4.0 minutes,17.2 cpm,0.10 uSv/h
Trickle sent
6981620,1679,2014-9-30 10:5:26,n,4.0 minutes,16.3 cpm,0.10 uSv/h
7222473,1735,2014-9-30 10:9:26,n,4.0 minutes,14.0 cpm,0.08 uSv/h
Trickle sent
Done - calling boinc_finish()
12:09:26 (3740): called boinc_finish

</stderr_txt>
]]>

I would like export this sample as txt or in a sql DB.
I hope you can help me.

thanks
Werner


Next 10 posts

Main page · Your account · Message boards


Copyright © 2024 BOINC@Poland | Open Science for the future