0 Members and 2 Guests are viewing this topic.
QuoteI gave you numbers, such as 904km/s for the tail applying for 11 hours to get to the right location to conform to the correct length contraction acting on the ship.My object never moves that fast. Show where the separation is wrong at any point along its length at time X. You're seemingly claiming that it takes 11 hours for one atom to catch up with the nearly stationary one right in front of it.
I gave you numbers, such as 904km/s for the tail applying for 11 hours to get to the right location to conform to the correct length contraction acting on the ship.
As soon as it starts moving, it is still essentially still stopped everywhere except possibly the tail (depending on how far back that arbitrarily close point is). It has no contraction except at the hind-most bit. So it hardly has changed in overall length, and doesn't need to because it is almost entirely still stopped.
We're talking in air as you say. I see it always being the exact correct length. It's not like I'm the first one to do the mathematics behind it. Where do you think that picture came from?
I have no associations with science organizations. You might submit your work to an established research center to make them aware of your models.
The 11 hours (which relates to a low-end guess at the amount of contraction over the whole ship once the back end starts moving)
as soon as the back end started moving (and not just the back end, because most of the ship instantly starts moving)
A simulation would make that clear
All I'm trying to do in the meantime is point out places where your ship isn't functioning in accordance with the rules you claim it conforms to.
I didn't think it was only the back of the ship that you're moving. You have the back moving at 452 and the front at 0, so I assumed the middle would be doing some speed in between the two and moving
When does the middle start and stop moving?
I would assume that you've taken the idea from a place where it doesn't start with the whole thing stationary and then suddenly have the back end moving at speed with the wrong length contraction on it.
Code: [Select]... while (speedK < speedK10) { speedC = speedK / 300000.; // Compute speed as fraction of c factorD = sqrt(1 - speedC * speedC); // Lorentz contraction tDmov = kmLH / speedK / SpD; // Days to move 1 LH at that speed tDwav = 36500 * (1. - factorD); // Wave time: 36500 light day ship len...
... while (speedK < speedK10) { speedC = speedK / 300000.; // Compute speed as fraction of c factorD = sqrt(1 - speedC * speedC); // Lorentz contraction tDmov = kmLH / speedK / SpD; // Days to move 1 LH at that speed tDwav = 36500 * (1. - factorD); // Wave time: 36500 light day ship len...
// Time units in hours.// Input speed in km/sec, but calculations take place as fraction of c#include <stdio.h>#include <math.h>#define SoL 299792.46 // speed of light, km/sec#define lenLH 876600. // hours in a century, len of object in LHint main(int ac, char **av){ double factorD, // lorentz factor (down) speedC, // speed as fraction of c speedK, // input speed in km/sec speedK10, step, // range limit km/sec tHmov, tHwav; // time in hours sscanf(*++av, "%lf", &speedK); // km/sec, but we convert to hrs sscanf(*++av, "%lf", &speedK10); step = (speedK10-speedK)/10.0; speedK10 += step/3; while (speedK < speedK10) { speedC = speedK / SoL; // Compute speed as fraction of c factorD = sqrt(1 - speedC * speedC); // Lorentz contraction tHmov = 1. / speedC; // Hours to move 1 LH at that speed tHwav = lenLH * (1. - factorD) / speedC; // Hours to move contraction len printf("S %.2f T %.9f W %.9f = %.9f \n", // Print in km/sec, days speedK, tHmov/24, tHwav/24, (tHmov+tHwav)/24); speedK += step; } return 0;}
> caterpillar 350 550S 350.00 T 35.689578571 W 21.321007134 = 57.010585706S 370.00 T 33.760412162 W 22.539351300 = 56.299763462S 390.00 T 32.029108974 W 23.757695620 = 55.786804594S 410.00 T 30.466713415 W 24.976040097 = 55.442753511S 430.00 T 29.049656977 W 26.194384738 = 55.244041714S 450.00 T 27.758561111 W 27.412729556 = 55.171290667S 470.00 T 26.577345745 W 28.631074559 = 55.208420304S 490.00 T 25.492556122 W 29.849419750 = 55.341975873S 510.00 T 24.492848039 W 31.067765143 = 55.560613182S 530.00 T 23.568589623 W 32.286110742 = 55.854700364S 550.00 T 22.711550000 W 33.504456555 = 56.216006555