+ Reply to Thread
Results 1 to 10 of 10

Thread: Speed of time

  1. #1

    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.



    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
    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).)

    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...

  2. #2
    This only compares the processing speed of the computer to its internal clock. It doesn't measure whether time moves faster or slower.

  3. #3
    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...

  4. #4
    Valued Senior Member origin's Avatar
    Posts
    3,234
    Quote Originally Posted by Hertz View Post
    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...
    That is not right, what it is showing is that the time it takes to run the program is not constant. The processing time will be affected by all of the other processes running on windows.

  5. #5
    Valued Senior Member gmilam's Avatar
    Posts
    1,976
    Quote Originally Posted by Hertz View Post
    But the internal clock is standard (it produces a sine wave.)
    You know, the passengers on the train are unaware of the doppler effect. The whistle remains on pitch for them.

  6. #6
    Well -- at least he's trying.

  7. #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.

  8. #8
    Registered Senior Member
    Posts
    106
    Quote Originally Posted by gmilam View Post
    You know, the passengers on the train are unaware of the doppler effect. The whistle remains on pitch for them.
    Very well said.

    I'm not sure if the original post wasn't a joke though?

  9. #9
    I have never seen that....

  10. #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

  1. By DJ Erock in forum Astronomy, Exobiology, & Cosmology
    Last Post: 05-21-13, 10:25 PM
    Replies: 18
  2. By Fuse26 in forum Computer Science & Culture
    Last Post: 11-11-11, 03:23 AM
    Replies: 10
  3. By Theoryofrelativity in forum Physics & Math
    Last Post: 03-20-06, 03:33 PM
    Replies: 20
  4. By Gatzzu in forum Physics & Math
    Last Post: 10-10-03, 05:27 AM
    Replies: 4

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •