-
07-24-12, 04:22 AM #1Hz
- Posts
- 60
Speed of time
After much study I have developed a computer program that measures the speed/rate of time (changes.) I recently wrote a macro in excel to measure such a thing and I have found it to be quite useful! (I have posted this program before with little success to a discussion so I am re-posting.) Incidentally I cannot tab when posting the code so it may not be spaced correctly, but I have done my best.
Obviously you do not have to take only ten banks of data, 'x' can be reset to include any number. The above program can also be adjusted to be used on other computer programming software, such as Qbasic (QuickBasic which comes free on windows 98 (d:\tools\oldmsdos).)Code:dim d(10) REM RESET TIMER a$=time() b$=time() while (b$=a$) b$=time() wend REM REVOLUTIONS for x=1 to 10 a$=time() b$=time() c=0 while (b$=a$) b$=time() c=c+1 d(x)=c wend next x REM DATA ANALYSIS for x=1 to 10 cells(x,1)=d(x) next x
The program works on the basis that if time is moving slower then the counting (during the second) will be slower, and faster when time is moving faster. Enjoy!
I look forward to some interesting discussions on the above subject...
-
07-24-12, 04:38 AM #2
This only compares the processing speed of the computer to its internal clock. It doesn't measure whether time moves faster or slower.
-
07-24-12, 04:58 AM #3Hz
- Posts
- 60
But the internal clock is standard (it produces a sine wave.) What the program shows is that the length of a second varies over time...
-
07-24-12, 09:40 AM #4
-
07-24-12, 04:36 PM #5
-
07-24-12, 05:13 PM #6Chipz
- Posts
- 839
Well -- at least he's trying.
-
07-29-12, 08:21 AM #7
Wouldn't something like this be more prevalent to timing?
http://en.wikipedia.org/wiki/555_timer_IC
As for the "task at hand" well it's already been stated that the pseudo-random effect of load and resource management will alter the program, which is why some timing chipset's initially existed considering their very operation is machine coded logic gate based (As minimalistic and repeatable as possible)
Like Chips has mentioned "At least he's trying", one of the main problems with people that get a decent fringe theory into their head is trying to identify the faults. so encouragement in trying to work out ways to better understand a given concept can actually aid them through learning what is wrong and even if done correctly can aid other people steer off the wrong path too. Bad mouthing and trolling in response to them just shows a psychological malformity of the responder.
-
07-29-12, 03:46 PM #8Registered Senior Member
- Posts
- 106
-
08-01-12, 09:50 PM #9
-
08-02-12, 05:04 PM #10
I have a feeling that if anything as phenomenal as an "undulation in the rate of time" ever is uncovered, it won't probably involve VBA running under Excel, and the sample rate will probably not be 1 second.
BTW Hertz, what you have is a little like the way CPU utilization is plotted on the Performance Monitor.
Similar Threads
-
By DJ Erock in forum Astronomy, Exobiology, & CosmologyLast Post: 05-21-13, 10:25 PMReplies: 18
-
By Fuse26 in forum Computer Science & CultureLast Post: 11-11-11, 03:23 AMReplies: 10
-
By Theoryofrelativity in forum Physics & MathLast Post: 03-20-06, 03:33 PMReplies: 20
-
By Gatzzu in forum Physics & MathLast Post: 10-10-03, 05:27 AMReplies: 4

Reply With Quote

Bookmarks