Vorheriges Thema anzeigen :: Nächstes Thema anzeigen |
Autor |
Nachricht |
RelativKritisch Redaktion
Anmeldedatum: 29.12.2006 Beiträge: 240
|
Verfasst am: 08.12.2010, 17:11 Titel: Hartwig Thim und sein Unsinn mit der Mikrowellenzentrifuge |
|
|
Thim-Unsinn, Folge 2: Im Oktober 2003 erschien im Journal „IEEE Transactions on Instrumentation and Measurement“ ein Artikel mit dem Titel „Absence of the Relativistic Transverse Doppler Shift at Microwave Frequencies“ (Vol. 52, No. 5). In diesem Artikel präsentiert der wissenschaftliche Außenseiter Hartwig Thim seine Experimente mit der von ihm und seinen Helfern gebauten „Mikrowellenzentrifuge“. Thim ist fest davon überzeugt, mit den Ergebnissen dieser Experimente die Einsteinsche Relativitätstheorie widerlegt zu haben. Seither tingelt er damit durchs Internet und von Vortrag zu Vortrag und präsentiert sich arrogant und eitel als „Totengräber der Speziellen Relativitätstheorie“.
|
|
Nach oben |
|
|
Solkar
Anmeldedatum: 29.05.2009 Beiträge: 293
|
Verfasst am: 29.03.2013, 07:18 Titel: |
|
|
Code: |
! [...]
!-------------------------------------------------------------------------------
!> @author Solkar
!! http://www.quantenforum.de/memberlist.php?mode=viewprofile&u=482
!> @brief
!! some basic SR-related stuff
!> @copyright
!! (c) Solkar 2013. All rights reserved.
!> @license
!! This work is released under the GNU Public License v3 as of June 29th 2007
!! http://www.gnu.org/licenses/gpl.html
!! Warranty: NONE, neither implied nor expressed.
!! Use at own risk only!
!-------------------------------------------------------------------------------
! [...]
!-----------------------------------------------------------------------------80
! MODULE lorentz
!> @author Solkar
!! http://www.quantenforum.de/memberlist.php?mode=viewprofile&u=482
!> @brief general SR routines
!! conventions: c=1, t-coords at 1st pos. (counting from 1), -+++ signature
!-------------------------------------------------------------------------------
module lorentz
implicit none
double precision, parameter :: c = 1.0 ! speed of light in natural units
contains
!---------------------------------------------------------------------------
!> @brief Lorentz-Transform of 2-Vectors
!
!> @param[in] p 2-Vector of DOUBLE of event coords to be transformed
!> @param[in] v DOUBLE, relative velocity (signed) in ]-1,1[
!> @return q 2-Vector of DOUBLE precision of transformed coords
!---------------------------------------------------------------------------
function lt2(p,v) result(q)
double precision, dimension(2), intent(in) :: p
double precision, intent(in) :: v
double precision, dimension(2) :: q ! result
double precision :: g ! gamma
double precision :: b ! beta
double precision, dimension(2,2) :: L ! LT matrix
! if (abs(v) >= 1.0) then
! write(*,*) "ERROR: v not in ]-1,1[, ",
! end if
b = v/c
g = 1.0/sqrt(1.0 - b**2)
L(1,1) = g
L(1,2) = -b*g
L(2,1) = L(1,2)
L(2,2) = g
q = matmul(L, p)
end function lt2
end module lorentz
! [...]
|
_________________ Nein! Das ist bestimmt irgendwas mit Quanten!
Man muss das nämlich alles erstmal quantenmechanisch beurteilen, mit allem Drum und Dran... |
|
Nach oben |
|
|
Solkar
Anmeldedatum: 29.05.2009 Beiträge: 293
|
Verfasst am: 30.03.2013, 17:23 Titel: |
|
|
Code: | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!80
!> @file guess_it.f90
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!> @author Solkar
!! http://www.quantenforum.de/memberlist.php?mode=viewprofile&u=482
!> @date Mar 30th 2013
!> @brief
!! some guessing work related to [Thi03]
!> @copyright
!! (c) Solkar 2013. All rights reserved.
! -----------------------------------------------------------------------------
!! Warranty: NONE, neither implied nor expressed.
!! DON'T use this stuff at all! DON'T!
! -----------------------------------------------------------------------------
! References
! ----------
! [Thi03] Thim, H. Absence of the relativistic transverse Doppler shift
! at microwave frequencies. Instrumentation and Measurement,
! IEEE Transactions on, 2003, 52, 1660-1664.
! doi:10.1109/TIM.2003.817916
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
module mconsts
double precision, parameter :: pi = acos(-1.0)
end module mconsts
module SI
implicit none
double precision, parameter :: c = 299792458.0 ! [c] = m/s
!double precision, parameter :: G = 6.67398E-11 ! [G] = Nm²/kg²
end module SI
program guess_it
use mconsts
use SI
implicit none
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!80
! Setup parameters of [Thi03]
! ------------------------------------------------------------------------
double precision, parameter :: r = 0.05 ! disc radius [r] = m
double precision, parameter :: rps = 250.0 ! rev. freq. [rps] = 1/s
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
double precision, parameter :: v = rps*2.0*pi*r ! transl. velo. [v] = m/s
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Estimating the goodness of simplifying inertial treatment of one disc.
! ------------------------------------------------------------------------
! v²/r = -a ! dynamics of circular orbit at disc radius...
! ------------------------------------------------------------------------
! To estimate an upper bound for metrical corrections we simply substitute
! it with a Schwarzschild BH of mass tailored to cause likewise dynamics.
! ------------------------------------------------------------------------
! mv²/r = GMm/r² ! ... taken as if caused by Newtonian G-force
! => R_s = 2GM/c² = 2v²r/c²
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
double precision :: R_s ! Schwarzschild radius of reference BH [R_s] = m
R_s = 2.0*(v**2.0)*r/(c**2.0)
write (*,*) "R_s/r = ", R_s/r
end program guess_it |
_________________ Nein! Das ist bestimmt irgendwas mit Quanten!
Man muss das nämlich alles erstmal quantenmechanisch beurteilen, mit allem Drum und Dran... |
|
Nach oben |
|
|
Solkar
Anmeldedatum: 29.05.2009 Beiträge: 293
|
Verfasst am: 02.04.2013, 01:48 Titel: |
|
|
Let $c := 1$ dimensionless.
To be proven¹:
$L(v_{2,1}) = L(v_{2,0} \oplus_{SR} v_{0,1})$, (I)
with $v_{N,M} $, following index conventions of [RK13v2], but denoting the c-based, velocity along $\vec{e_x}_M$ [RK13v2] of IS #N, seen from IS #M, following the numbering used in [RK13v2], $\Lambda\left(v_{N,M}\right) $ be the matrix of the the respective Lorentz-Transformation $L(v_{N,M})$,
$\gamma\left(v_{N,M}\right) $ the respective Lorentz-gamma and
$\oplus_{SR}$
denoting relativistic composition law of velocities, here
$v_{2,0} \oplus_{SR} v_{0,1} := \frac{v_{2,0} + v_{0,1}}{1 + (v_{2,0}\cdot v_{0,1})}$ (II)
For shortness sake, we will restrict formalism to the leading two dimensions of respective matrices because- the third and forth coordinates of the vectors transform trivially in this scenario given the coord conventions used in [RK13v2].
Furthermore, simply $v$ , thus without subscripts:
$v := \left|v_{1,0}\right| = \left|v_{2,0}\right|$ (III)
So we have
$v_{1,0} = v \Rightarrow v_{0,1} = -v$ (IV)
$v_{2,0} = -v$ (V)
From group properties of LT
$L(v_{2,1}) = L(v_{2,0}) \circ L(v_{0,1})$ (VI)
follows, thus
$\Lambda(v_{2,1}) = \Lambda(v_{2,0}) \cdot \Lambda(v_{0,1})$ (VII)
$= \gamma(-v) \left(\begin{array}{cc}1&-(-v)\\-(-v)&1\end{array}\right) \cdot \gamma(-v)\left(\begin{array}{cc}1&-(-v)\\-(-v)&1\end{array}\right)$ (VIII)
$= \gamma^2(v) \left(\begin{array}{cc}1+v^2&2v\\2v&1+v^2\end{array}\right) $ (IX)
$= \frac{1+v^2}{1-v^2} \left(\begin{array}{cc}1&\frac{2v}{1+v^2}\\\frac{2v}{1+v^2}&1\end{array}\right)$. (X)
---
From (I) and (II) we get
$\Lambda(v_{2,1}) = \Lambda(\frac{v_{2,0} + v_{0,1}}{1 + (v_{2,0}\cdot v_{0,1})})$, (XI)
thus with (IV) and (V)
$\Lambda(v_{2,1}) = \Lambda(\frac{-2v}{1 + v^2})$, (XII)
which is to be proven.
---
By definition of $\gamma$ and (XII)
$\gamma(v_{2,1}) = \frac{1}{\sqrt{1- \left(\frac{-2v}{1 + v^2}\right)^2}}. $ (XIII)
must hold.
---
Lemma:
$\frac{1}{\sqrt{1- \left(\frac{-2v}{1 + v^2}\right)^2}} = \frac{1+v^2}{1-v^2}$ (XIV)
Proof:
$1-v^2 = \sqrt{(1-v^2)^2} = \sqrt{1-2v^2+v^4} = \sqrt{1+2v^2+v^4-4v^2} = \sqrt{(1+v^2)^2-4v^2} = (1+v^2) \sqrt{1 - \frac{4v^2}{(1+v^2)^2}} $(XV)
$ \Rightarrow$ eq(XIV) ☐
---
Substituting the left factor of (X) with the left side of (XIV) gives
$\Lambda(v_{2,1}) = \frac{1}{\sqrt{1- \left(\frac{-2v}{1 + v^2}\right)^2}} \left(\begin{array}{cc}1&\frac{2v}{1+v^2}\\\frac{2v}{1+v^2}&1\end{array}\right)$. (XVI)
So (XII) holds, thus (I) is proved. ☐
[RK13v2] Relativ Kritisch Widerlegung der "Vierervektorrechnung“ des Professors H. Thim. 2013. http://www.relativ-kritisch.net/blog/wp-content/uploads/2013/03/RebuttalAbsenceOfRtDShift.pdf
[Thi03] Thim, H. Absence of the relativistic transverse Doppler shift at microwave frequencies. Instrumentation and Measurement, IEEE Transactions on, 2003, 52, 1660-1664. doi:10.1109/TIM.2003.817916
[Thi11] Thim, H. Doppler shift between two rotating disks. NN, 2011, 1, 2. http://www.relativ-kritisch.net/blog/wp-content/uploads/2013/03/Doppler-shift-between-two-rotating-disks.pdf
¹Well. not really, because that is quite obvious, but the author of [Thi03], [Thi11] apparently
Hartwig Thim hat Folgendes geschrieben: | Eine Tautologie aufzuspüren ist gar nicht so einafch. Bei Karl’s Rechnung liegt eine Tautologie vor. denn er setzt die SRT zweimal ein. Zuerst die LTN und dann das Additionstheorem für Gesschwindigkeiten. da kommt heraus 1=1, was ja stimmt. Das wissen schon die Taferlklassler (1. Klasse Volksschule)
| thinks otherwise.
EDIT Apr 2nd 2013, 15:20: some typos and grammar errors fixed |
|
Nach oben |
|
|
|
|
Du kannst keine Beiträge in dieses Forum schreiben. Du kannst auf Beiträge in diesem Forum nicht antworten. Du kannst deine Beiträge in diesem Forum nicht bearbeiten. Du kannst deine Beiträge in diesem Forum nicht löschen. Du kannst an Umfragen in diesem Forum nicht mitmachen.
|
|