I have a system of four equations with four unknowns posted below. Each equation (f1,f2,f3,f4) is set equal to zero, and I have tried using fsolve with no success. The issue may be that these are non-linear. Any help setting up a script to solve for these four unknowns in Python would be greatly appreciated. Please note the code summarized below does not have proper syntax, it is essentially just a text summary of the equations/system:
V = Ind. variable from 0 to 300
Qcu = ?
Qzn = ?
Ccu = ?
Czn = ?
f1 = [(Qcu*Czn)/(Qzn*Ccu)] - 3
f2 = Qzn + Qcu - 3.5
f3 = Czn + (Qzn*V) - 0.189
f4 = Ccu + (Qcu*V) - 0.917