Guest User

Untitled

a guest
Jan 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.37 KB | None | 0 0
  1. \documentclass[letter,10pt]{article}
  2. \usepackage[cm,empty]{fullpage}
  3. \usepackage{amssymb, amsmath, amstext}
  4. \usepackage{datetime}
  5. \usepackage{listings}
  6. \usepackage[pdftex]{graphicx}
  7. \usepackage{subfigure}
  8. \usepackage{siunitx}
  9.  
  10. \setlength{\parindent}{0.0cm}
  11. \setlength{\parskip}{0.4cm}
  12.  
  13. \newcommand{\defhead}[1]{\textbf{\underline{#1}:} \\}
  14. \newcommand{\vect}[1]{\hat{\boldsymbol{#1}}}
  15.  
  16. \renewcommand{\familydefault}{\sfdefault}
  17. \renewcommand{\thefootnote}{\roman{footnote}}
  18. \everymath{\allowdisplaybreaks\displaystyle}
  19.  
  20.  
  21. \makeatletter
  22. \renewcommand\@makefnmark{\@textsuperscript{\normalfont(\@thefnmark)}}
  23. \makeatother
  24.  
  25. \begin{document}
  26. \begin{table}[h]
  27. % \begin{minipage}[b]{0.5\linewidth}
  28. \centering
  29. \renewcommand{\arraystretch}{1.6}
  30. \begin{tabular}{|l|r|c|c|c|}
  31. \hline
  32. & & Cartesian & Cylindrical & Spherical \\
  33. \hline
  34. Coordinate variables & & $x,y,z$ & $r,\phi,z$ & $R,\theta,\phi$ \\
  35. \hline
  36. Vector representation & $\vec{A}=$ & $\vect{x}A_x+\vect{y}A_y+\vect{z}A_z$ & $\vect{r}A_r+\vect{\phi}A_\phi+\vect{z}A_z$ & $\vect{R}A_R+\vect{\theta}A_\theta+\vect{\phi}A_\phi$ \\
  37. \hline
  38. Magnitude of A & $|\vec{A}|=$ & $+\sqrt{A_x^2+A_y^2+A_z^2}$ & $+\sqrt{A_r^2+A_\phi^2+A_z^2}$ & $+\sqrt{A_R^2+A_\theta^2+A_\phi^2}$ \\
  39. \hline
  40. Position vector & $\vec{OP_1}=$ & $\vect{x}x_1+\vect{y}y_1+\vect{z}z_1$ & $\vect{r}r_1+\vect{z}z_1$ & $\vect{R}R_1$ \\
  41. \hline
  42. Base vectors properties & & $\vect{x}\cdot\vect{x}=\vect{y}\cdot\vect{y}=\vect{z}\cdot\vect{z}=1$ & $\vect{r}\cdot\vect{r}=\vect{\phi}\cdot\vect{\phi}=\vect{z}\cdot\vect{z}=1$ & $\vect{R}\cdot\vect{R}=\vect{\theta}\cdot\vect{\theta}=\vect{\phi}\cdot\vect{\phi}=1$ \\
  43. & & $\vect{x}\cdot\vect{y}=\vect{y}\cdot\vect{z}=\vect{z}\cdot\vect{x}=0$ & $\vect{r}\cdot\vect{\phi}=\vect{\phi}\cdot\vect{z}=\vect{z}\cdot\vect{r}=0$ & $\vect{R}\cdot\vect{\theta}=\vect{\theta}\cdot\vect{\phi}=\vect{\phi}\cdot\vect{R}=0$ \\
  44. & & $\vect{x}\times\vect{y}=\vect{z}$ & $\vect{r}\times\vect{\phi}=\vect{z}$ & $\vect{R}\times\vect{\theta}=\vect{\phi}$ \\
  45. & & $\vect{y}\times\vect{z}=\vect{x}$ & $\vect{\phi}\times\vect{z}=\vect{r}$ & $\vect{\theta}\times\vect{\phi}=\vect{R}$ \\
  46. & & $\vect{z}\times\vect{x}=\vect{y}$ & $\vect{z}\times\vect{r}=\vect{\phi}$ & $\vect{\phi}\times\vect{R}=\vect{\theta}$ \\
  47. \hline
  48. Dot product & $\vec{A}\cdot\vec{B}=$ & $A_xB_x+A_yB_y+A_zB_z$ & $A_rB_r+A_\phi B_\phi+A_zB_z$ & $A_RB_R+A_\theta B_\theta+A_\phi B_\phi$ \\
  49. \hline
  50. Cross product & $\vec{A}\times\vec{B}=$ & & & \\
  51. & & $\renewcommand{\arraystretch}{1.0} \left| \begin{array}{ccc} \vect{x} & \vect{y} & \vect{z} \\ A_x & A_y & A_z \\ B_x & B_y & B_z \\ \end{array} \right|$ & $\renewcommand{\arraystretch}{1.0} \left| \begin{array}{ccc} \vect{r} & \vect{\phi} & \vect{z} \\ A_r & A_\phi & A_z \\ B_r & B_\phi & B_z \\ \end{array} \right|$ & $\renewcommand{\arraystretch}{1.0} \left| \begin{array}{ccc} \vect{R} & \vect{\theta} & \vect{\phi} \\ A_R & A_\theta & A_\phi \\ B_R & B_\theta & B_\phi \\ \end{array} \right|$ \\
  52. & & & & \\
  53. \hline
  54. Differential length & $dl=$ & $\vect{x}\,dx+\vect{y}\,dy+\vect{z}\,dz$ & $\vect{r}\,dr+\vect{\phi}r\,d\phi+\vect{z}\,dz$ & $\vect{R}\,dR+\vect{\theta}R\,d\theta+\vect{\phi}R\sin{\theta}\,d\phi$ \\
  55. \hline
  56. Differential surface areas & $ds=$ & $ds_x=\vect{x}\,dx\,dz$ & $ds_r=\vect{r}r\,d\phi\,dz$ & $ds_R=\vect{R}R^2\sin{\theta}\,d\theta\,d\phi$ \\
  57. & & $ds_y=\vect{y}\,dx\,dz$ & $ds_\phi=\vect{\phi}\,dr\,dz$ & $ds_\theta=\vect{\theta}R\sin{\theta}\,dR\,d\phi$ \\
  58. & & $ds_z=\vect{z}\,dx\,dy$ & $ds_z=\vect{z}r\,dr\,d\phi$ & $ds_\phi=\vect{\phi}R\,dR\,d\theta$ \\
  59. \hline
  60. Differential volume & $dv=$ & $dx\,dy\,dz$ & $r\,dr\,d\phi\,dz$ & $R^2\sin{\theta}\,dR\,d\theta\,d\phi$ \\
  61. \hline
  62. \end{tabular}
  63. \caption{Table 3-1 from Fundamentals of Applied Electromagnetics 6E.}
  64. \end{table}
  65.  
  66. \begin{table}[h]
  67. \renewcommand{\arraystretch}{1.6}
  68. \centering
  69. \begin{tabular}{|c|c|c|c|}
  70. \hline
  71. & Coordinate Variables & Unit Vectors & Vector Components \\
  72. \hline
  73. Cartesian to Cylindrical & $r=+\sqrt{x^2+y^2}$ & $\vect{r}=\vect{x}\cos{\phi}+\vect{y}\sin{\phi}$ & $A_r=A_x\cos{\phi}+A_y\sin{\phi}$ \\
  74. & $\phi=\tan^{-1}({y/x})$ & $\vect{\phi}=-\vect{x}\sin{\phi}+\vect{y}\cos{\phi}$ & $A_\phi=-A_x\sin{\phi}+A_y\cos{\phi}$ \\
  75. & $z=z$ & $\vect{z}=\vect{z}$ & $A_z=A_z$ \\
  76. \hline
  77. Cylindrical to Cartesian & & & \\
  78. & & & \\
  79. & & & \\
  80. \hline
  81. Cartesian to Spherical & & & \\
  82. & & & \\
  83. & & & \\
  84. \hline
  85. Spherical to Cartesian & & & \\
  86. & & & \\
  87. & & & \\
  88. \hline
  89. Cylindrical to Spherical & & & \\
  90. & & & \\
  91. & & & \\
  92. \hline
  93. Spherical to Cylindrical & & & \\
  94. & & & \\
  95. & & & \\
  96. \hline
  97. \end{tabular}
  98. \caption{Table 3-2 from Fundamentals of Applied Electromagnetics 6E.}
  99. \end{table}
  100. \end{document}
Add Comment
Please, Sign In to add comment