-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
180 lines (157 loc) · 6.71 KB
/
Copy pathindex.html
File metadata and controls
180 lines (157 loc) · 6.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Relational Magnitudes</title>
<link rel="icon" href="favicon.svg">
<style>
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
background-color: #f8f8f8;
color: #333;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 30px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1 {
color: #2c3e50;
border-bottom: 2px solid #3498db;
padding-bottom: 10px;
margin-top: 0;
}
h2 {
color: #34495e;
border-bottom: 1px dashed #ecf0f1;
padding-bottom: 5px;
margin-top: 30px;
}
h3 {
color: #34495e;
margin-top: 25px;
}
blockquote {
border-left: 5px solid #3498db;
background-color: #ecf0f1;
padding: 10px 20px;
margin: 20px 0;
color: #555;
font-style: italic;
}
hr {
border: 0;
height: 1px;
background: #ccc;
margin: 30px 0;
}
.math-block {
display: block;
text-align: left;
margin: 15px 0 15px 50px;
font-size: 1.1em;
overflow-x: auto;
}
ol, ul {
padding-left: 20px;
}
li {
margin-bottom: 10px;
}
a {
color: #2980b9;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<script>
MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']]
},
svg: {
fontCache: 'global'
}
};
</script>
</head>
<body>
<div class="container">
<h1>Relational Magnitudes</h1>
<blockquote>
Relational Magnitudes are invariant vectorial quantities that conserve their value and form under transformations of translation and rotation.
</blockquote>
<hr>
<h2>I. Definitions I (Relational Magnitudes)</h2>
<p>The relational position ($\mathbf{r}_i$), relational velocity ($\mathbf{v}_i$), and relational acceleration ($\mathbf{a}_i$) of a particle $i$ with respect to an Auxiliary Reference Frame, are given by:</p>
<div class="math-block">
$\mathbf{r}_i \doteq \vec{r}_i$
</div>
<div class="math-block">
$\mathbf{v}_i \doteq \dfrac{d(\vec{r}_i)}{dt} = \vec{v}_i$
</div>
<div class="math-block">
$\mathbf{a}_i \doteq \dfrac{d^2(\vec{r}_i)}{dt^2} = \vec{a}_i$
</div>
<p>Where $\vec{r}_i$, $\vec{v}_i$ and $\vec{a}_i$ are the ordinary vectorial position, velocity, and acceleration of the particle $i$ with respect to the Auxiliary Reference Frame.</p>
<p><strong>Note</strong></p>
<p>The Relational (Vectorial) Magnitudes are always the same as the Ordinary (Vectorial) Magnitudes in the Auxiliary Reference Frame.</p>
<hr>
<h2>II. Definitions II (Relational Magnitudes)</h2>
<p>The relational position ($\mathbf{r}_i$), relational velocity ($\mathbf{v}_i$), and relational acceleration ($\mathbf{a}_i$) of a particle $i$ with respect to any Reference Frame $S$, are given by:</p>
<div class="math-block">
$\mathbf{r}_i \doteq \vec{r}_i - \vec{R}$
</div>
<div class="math-block">
$\mathbf{v}_i \doteq (\vec{v}_i - \vec{V}) - \vec{\omega} \times (\vec{r}_i - \vec{R})$
</div>
<div class="math-block">
$\mathbf{a}_i \doteq (\vec{a}_i - \vec{A}) - 2\vec{\omega} \times (\vec{v}_i - \vec{V}) + \vec{\omega} \times [\ \vec{\omega} \times (\vec{r}_i - \vec{R})\ ] - \vec{\alpha} \times (\vec{r}_i - \vec{R})$
</div>
<p>Where:</p>
<ul>
<li>$\vec{r}_i, \vec{v}_i, \vec{a}_i$ are the ordinary vectorial position, velocity, and acceleration of particle $i$ with respect to the Frame $S$.</li>
<li>$\vec{R}, \vec{V}, \vec{A}$ are the position, velocity, and acceleration of the Auxiliary Frame's origin with respect to $S$.</li>
<li>$\vec{\omega}$ and $\vec{\alpha}$ are the angular velocity and angular acceleration of the Auxiliary Frame with respect to $S$.</li>
</ul>
<hr>
<h2>III. Transformations (Invarianza$\cdot$Relations)</h2>
<p>The transformations of relational position, relational velocity and relational acceleration of a particle $i$ between a Reference Frame $S$ and another Reference Frame $S'$, are given by:</p>
<div class="math-block">
$\mathbf{r}_i \doteq (\vec{r}_i - \vec{R}) = \mathbf{r}'_i$
</div>
<div class="math-block">
$\mathbf{r}'_i \doteq (\vec{r}'_i - \vec{R}') = \mathbf{r}_i$
</div>
<div class="math-block">
$\mathbf{v}_i \doteq (\vec{v}_i - \vec{V}) - \vec{\omega} \times (\vec{r}_i - \vec{R}) = \mathbf{v}'_i$
</div>
<div class="math-block">
$\mathbf{v}'_i \doteq (\vec{v}'_i - \vec{V}') - \vec{\omega}' \times (\vec{r}'_i - \vec{R}') = \mathbf{v}_i$
</div>
<div class="math-block">
$\mathbf{a}_i \doteq (\vec{a}_i - \vec{A}) - 2\vec{\omega} \times (\vec{v}_i - \vec{V}) + \vec{\omega} \times [\ \vec{\omega} \times (\vec{r}_i - \vec{R})\ ] - \vec{\alpha} \times (\vec{r}_i - \vec{R}) = \mathbf{a}'_i$
</div>
<div class="math-block">
$\mathbf{a}'_i \doteq (\vec{a}'_i - \vec{A}') - 2\vec{\omega}' \times (\vec{v}'_i - \vec{V}') + \vec{\omega}' \times [\ \vec{\omega}' \times (\vec{r}'_i - \vec{R}')\ ] - \vec{\alpha}' \times (\vec{r}'_i - \vec{R}') = \mathbf{a}_i$
</div>
<hr>
<h2>IV. Bibliography</h2>
<ol>
<li>A. Blatter, <em>A Reformulation of Classical Mechanics</em> (2015). <a href="https://atorassa.github.io/physics-authors/blatter/english/pdf/09.pdf">[PDF]</a></li>
<li>A. Tobla, <em>A Reformulation of Classical Mechanics</em> (2024). <a href="https://atorassa.github.io/physics-authors/tobla/english/pdf/02.pdf">[PDF]</a></li>
</ol>
</div>
</body>
</html>