-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathformulas.tex
83 lines (71 loc) · 1.76 KB
/
formulas.tex
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
% Answer for http://tex.stackexchange.com/q/147159/828
% Basically just reformatting the code given in the answer, and nice-ying it
% up a bit.
\documentclass[paper=a4]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{booktabs}
\usepackage{amsmath}
\title{Calcul théorique de la propulsion éléctromagnetique de l'aimant}
\author{Lawrence}
\begin{document}
\maketitle
\section*{Constantes ``modifiables''}
\begin{table}[h]
\begin{tabular}{lc}
\toprule
Rayon des spires & \(D\)\\
Nombre de spire & \(N\)\\
Tension du générateur & \(\mu\)\\
Capacité du condensateur & \(C\)\\
Arètes du tore & \(L\)\\
Masse du tore & \(m\)\\
\bottomrule
\end{tabular}
\end{table}
\section*{Variables}
\begin{table}[h]
\begin{tabular}{lc}
\toprule
Vitesse de tore & \(v(t)\)\\
Tension du condensateur & \(u(t)\)\\
Intensité & \(i(t)\)\\
Champ magnétique & \(\vec{B}\)\\
Potentiel vecteur & \(\vec{A}\)\\
Densité de courant dans le tore & \(\vec{j}\)\\
\bottomrule
\end{tabular}
\end{table}
\section*{Equations}
\begin{equation}
\boxed{
m \frac{dv}{dt} = -mg + \iiint_{
\textrm{tore-en-mouvement}} (\vec{j} \times \vec{B}) \cdot \vec{e_z
}d\tau
}
\label{m}
\end{equation}
\begin{equation}
i = -C \frac{du}{dt}
\label{i}
\end{equation}
\begin{equation}
u = Ri + \iint_{N-spires} \vec{B} \cdot d\vec{S}
\label{u}
\end{equation}
\begin{equation}
\vec{j} = \gamma \left(
\vec{v} \times \vec{B} - \frac{\partial\vec{A}}{\partial t}
\right)
\label{j}
\end{equation}
\begin{equation}
\vec{A} = \frac{\mu_0}{4\pi} \iiint_{tore-en-mouvement} \frac{\vec{j}}{PM}
\cdot d\tau + \frac{\mu_0 Ni}{4\pi} \int\frac{d\vec{r}}{PM}
\label{A}
\end{equation}
\begin{equation}
\vec{B} = rot\vec{A}
\label{B}
\end{equation}
\end{document}