You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Krylov-Bogoliubov method for commensurate frequencies, e.g., $\omega$ and $3\omega$. Technically the one can compute the slow-flow equations for such a system, but at the moment KB in HB.jl compute the wrong equations.
eq1 =d(d(x, t), t) + ω₁^2* x + α₁ * x^3+3* J₁ * x^2* y + J₂ * y^2* x #+ γ₁ * d(x, t) + η₁ * x^2 * d(x, t)
eq2 =d(d(y, t), t) + ω₂^2* y + α₂ * y^3+ J₁ * x^3+ J₂ * x^2* y #+ γ₂ * d(y, t) + η₂ * y^2 * d(y, t)
forces = [F *cos(ω * t), 0]
dEOM_temp =DifferentialEquation([eq1, eq2] - forces, [x, y]);
add_harmonic!(dEOM_temp, x, ω) # x will rotate at ωadd_harmonic!(dEOM_temp, y, 3* ω); # y will rotate at 3*ω# harmonic_tmp = get_krylov_equations(dEOM_temp, order=1);
harmonic_tmp =get_harmonic_equations(dEOM_temp);
rearranged = HB.rearrange_standard(harmonic_tmp)
prob_temp = HB.Problem(rearranged)
rearranged.equations
The text was updated successfully, but these errors were encountered:
Krylov-Bogoliubov method for commensurate frequencies, e.g.,$\omega$ and $3\omega$ . Technically the one can compute the slow-flow equations for such a system, but at the moment KB in HB.jl compute the wrong equations.
The text was updated successfully, but these errors were encountered: