[OCAU] badger 2005-08-29 21:39:33 | Just noticed this, it is actually real time (I'm guessing not) or based on previous numbers and reset when real stats are updated. In any case it is cool |
K`Tetch 2005-08-30 07:10:14 | i asked Stephen about this the other day - he said its based on the rate of the previous 2 hours. due to the way the lines have been mostly straight, its pretty accurate in comparison to real time. |
Stephen Brooks 2005-09-01 11:36:39 | I actually improved it to average over a 5 hour period now, so small fluctuations won't put it out by so much. The realtime equivalent would _look_ pretty similar, particularly the Mpts as this would be increasing continuously. The results number wouldn't increase in a regular way, of course, it would be random but average out to about the same rate. |
Stephen Brooks 2005-09-02 17:24:48 | Me adding on people's lost stats has caused it to go a bit oddmallards, though. |
AySz88 2005-09-14 18:46:26 | I occasionally get an error: Error $denom==0: $slopes=Array ( [1] => Array ( [0] => 0 [1] => 0 ) [2] => Array ( [0] => 0 [1] => 0 ) [3] => Array ( [0] => 0 [1] => 0 ) ) $sc=Array ( [0] => 1126747091 [1] => 16797156 [2] => 3.0275160357E+15 ) $sp=Array ( [0] => 1126747091,16797156,3.0275160357E+15 [1] => 1126743968,16796696,3.0274544521E+15 [2] => 1126741591,16796145,3.0273791147E+15 [3] => 1126736315,16795457,3.0273164232E+15 [4] => 1126732999,16794988,3.0272330738E+15 [5] => 1126729035,16794196,3.0271378544E+15 ) Error $denom==0: $slopes=Array ( [1] => Array ( [0] => 0 [1] => 0 ) [2] => Array ( [0] => 0 [1] => 0 ) [3] => Array ( [0] => 0 [1] => 0 ) ) $sc=Array ( [0] => 1126747091 [1] => 16797156 [2] => 3.0275160357E+15 ) $sp=Array ( [0] => 1126747091,16797156,3.0275160357E+15 [1] => 1126743968,16796696,3.0274544521E+15 [2] => 1126741591,16796145,3.0273791147E+15 [3] => 1126736315,16795457,3.0273164232E+15 [4] => 1126732999,16794988,3.0272330738E+15 [5] => 1126729035,16794196,3.0271378544E+15 ) Warning: Division by zero in /home/stephenbro/domains/stephenbrooks.org/public_html/muon1/main.php on line 165 Warning: Division by zero in /home/stephenbro/domains/stephenbrooks.org/public_html/muon1/main.php on line 165 16`797`156 simulations 3`027`516`035`699`993 particle-timesteps |
Stephen Brooks 2005-09-26 14:28:19 | OK, noted. I've been chasing this one for a while, trying to figure out what's going wrong the first time the files change. |
Stephen Brooks 2005-09-26 16:06:36 | Aha! I think I've fixed it. The problem was $sp there was a 1D array when it should be a 2D array (the comma-separated bits should have been subarrays). It was only converted back to a 1D array so I could save a file - some stupid coding where I reused the variable and I really shouldn't have. |