How can I get analytical solution of trigonometric equations?

3 次查看(过去 30 天)
the constants are:
k11 = (16*V1*V1)/(n^3*(pi)^2*(2*pi*f)*L)
k22 = (16*V2*V2)/(n^3*(pi)^2*(2*pi*f)*L)
k33 = (16*V3*V3)/(n^3*(pi)^2*(2*pi*f)*L)
k12 = (8*V1*V2)/(n^3*(pi)^2*(2*pi*f)*L)
k13 = (8*V1*V3)/(n^3*(pi)^2*(2*pi*f)*L)
k23 = (8*V2*V3)/(n^3*(pi)^2*(2*pi*f)*L)
The equations are:
P1 = (k12.*cos(x(1)*pi/360).*cos(x(2)*pi/360).*sin(x(4)*pi/180))+(k13.*cos(x(1)*pi/360).*cos(x(3)*pi/360).*sin(x(5)*pi/180))
P2 = -(k12.*cos(x(1)*pi/360).*cos(x(2)*pi/360).*sin(x(4)*pi/180))+(k23.*cos(x(2)*pi/360).*cos(x(3)*pi/360).*sin((x(5)-x(4))*pi/180))
P3 = -(k13.*cos(x(1)*pi/360).*cos(x(3)*pi/360).*sin(x(5)*pi/180))+(k23.*cos(x(2)*pi/360).*cos(x(3)*pi/360).*sin((x(4)-x(5))*pi/180))
Q1 = (k11.*cos(x(1)*pi/360).*cos(x(1)*pi/360))-(k12.*cos(x(1)*pi/360).*cos(x(2)*pi/360).*cos(x(4)*pi/180))-(k13.*cos(x(1)*pi/360).*cos(x(3)*pi/360).*cos(x(5)*pi/180))
Q2 = -(k12.*cos(x(1)*pi/360).*cos(x(2)*pi/360).*cos(x(4)*pi/180))+(k22.*cos(x(2)*pi/360).*cos(x(2)*pi/360))-(k23.*cos(x(2)*pi/360).*cos(x(3)*pi/360).*cos((x(5)-x(4))*pi/180))
Q3 = -(k13.*cos(x(1)*pi/360).*cos(x(3)*pi/360).*cos(x(5)*pi/180))-(k23.*cos(x(2)*pi/360).*cos(x(3)*pi/360).*cos((x(5)-x(4))*pi/180))+(k33.*cos(x(3)*pi/360).*cos(x(3)*pi/360))
How can I solve for the angles x(1), x(2), x(3), x(4) and x(5)? Can anyone please help me to solve these equations?
  8 个评论
Walter Roberson
Walter Roberson 2018-6-26
There is not necessarily any error in your code. The system is just difficult to solve.
My work so far shows that for each x1 there are two x2, and that for each x2 there are four x3. Computation is slow, so I have not gotten further than that quite yet.
Mukul
Mukul 2018-6-26
Ok Walter, please let me inform what you get when the computation would finish

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2018-6-22
Analytic solution:
x(1) = 180 + 360*Z1
x(2) = 180 + 360*Z2;
x(3) = 180 + 360*Z3;
x(4) and x(5) arbitrary (that is, the above 3 together solve all 5 equations)
Here, Z1, Z2, and Z3 represent arbitrary integers
  6 个评论
Mukul
Mukul 2018-6-28
Dear Walter,
I am waiting to solutions you have got so far.
Would you prefer solving these equations using solve function or any other way you suggest for me?
Walter Roberson
Walter Roberson 2018-6-28
Solving for x(4) and x(5) both failed at the place I was indicating was taking a long time. I did not go back to try substituting in the other choices.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by