I wish to solve the eqn shown in figure below:
Here, I wish to find the value of theta_u. The i/p paarmeters are:
clear;
Vau = 43;
Vsu = 47.51;
gamma = 5/3;
beta = 1.41;
I think I made some mathetcal error while taking theta_u on LHS-RHS. This leads me to wrong answer: i.e. 161.8754 (degree).
I coded it like:
syms theta_u
q1 = double(solve((acosd(Vau*cosd(theta_u)/Vsu)*sqrt(beta*gamma/2))/(theta_u)-1))
However, this caluculation goes wrong. The correct answer is 71.8 degree.
Could anyone help on mathematics and code?
Thank you in advance!