Straight Line from polar co-ordinates

pd5009
Messages
2
Reaction score
0
Hi All,
This is my first post. I am an Electronics Engineer and came by this great forum while searching something for my presently running project.
Could anyone please help me with the following:

I have two points A(magnitude1,phase1[deg]) and B(magnitude2,phase2[deg]) on the input side. Also, I have the Time input to travel from pt.A to pt.B

I have one polar plot as indicator output.


I need to show on the polar plot a line which is gradually increasing from pt.A to pt.B in a straight line on the polar plot.


You may refer the picture attached to get an idea of what I am trying to do.

Thanks!
 

Attachments

  • Temp.JPG
    Temp.JPG
    32.8 KB · Views: 470
Physics news on Phys.org
I assume what you're looking for is the magnitude and direction of the vector from point A (2,\angle 10^\circ)[/tex] to point B (20, \angle 60^\circ )[/tex].<br /> <br /> First, convert the coordinates of each point from polar to rectangular:<br /> <br /> Point A:<br /> X = 2 \cos(10), Y = 2 \sin(10) \approx (1.970, 0.347)<br /> <br /> Point B:<br /> X = 20 \cos(60), Y = 20 \sin(60) \approx (10, 17.321):<br /> <br /> <br /> <br /> Next, find the change in X (\Delta X)[/tex] and the change in Y (\Delta Y)[/tex]:<br /> <br /> \Delta X = X_B - X_A \approx 10 - 1.970 \approx 8.030<br /> <br /> \Delta Y = Y_B - Y_A \approx 17.321 - 0.347 \approx 16.973<br /> <br /> <br /> <br /> Now, find the length of the line segment M[/tex] using the Pythagorean Theorem:<br /> <br /> M = \sqrt{8.030^2 + 16.973^2} \approx 18.777<br /> <br /> <br /> <br /> Lastly, find the angle of the line segment \alpha[/tex]:<br /> <br /> \alpha \approx \tan^{-1} \left( \frac{\Delta Y}{\Delta X}\right) \approx \tan^{-1} \left( \frac{16.973}{8.030} \right) \approx \tan^{-1}(2.114) \approx 64.680^\circ<br /> <br /> (I only rounded the numbers for display, not for intermediate calculations)<br /> <br /> <br /> <br /> <br /> So, your resulting line segment from point A to point B can be represented by the vector (m, \alpha) \approx (18.777, \angle 64.680^\circ)[/tex]<br /> <br /> Hope this helps!
 
^ ^ Thanks :) I implemented that in my software and it worked :)
 
I asked online questions about Proposition 2.1.1: The answer I got is the following: I have some questions about the answer I got. When the person answering says: ##1.## Is the map ##\mathfrak{q}\mapsto \mathfrak{q} A _\mathfrak{p}## from ##A\setminus \mathfrak{p}\to A_\mathfrak{p}##? But I don't understand what the author meant for the rest of the sentence in mathematical notation: ##2.## In the next statement where the author says: How is ##A\to...
The following are taken from the two sources, 1) from this online page and the book An Introduction to Module Theory by: Ibrahim Assem, Flavio U. Coelho. In the Abelian Categories chapter in the module theory text on page 157, right after presenting IV.2.21 Definition, the authors states "Image and coimage may or may not exist, but if they do, then they are unique up to isomorphism (because so are kernels and cokernels). Also in the reference url page above, the authors present two...
##\textbf{Exercise 10}:## I came across the following solution online: Questions: 1. When the author states in "that ring (not sure if he is referring to ##R## or ##R/\mathfrak{p}##, but I am guessing the later) ##x_n x_{n+1}=0## for all odd $n$ and ##x_{n+1}## is invertible, so that ##x_n=0##" 2. How does ##x_nx_{n+1}=0## implies that ##x_{n+1}## is invertible and ##x_n=0##. I mean if the quotient ring ##R/\mathfrak{p}## is an integral domain, and ##x_{n+1}## is invertible then...
Back
Top