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
ERROR: ┌ Error: XYAUPD_Exception: Maximum number of iterations taken. All possible eigenvalues of OP has been found.
│ IPARAM(5) returns the number of wanted converged Ritz values.
│ info = 1
└ @ Arpack ~/.julia/packages/Arpack/FCvNd/src/libarpack.jl:47
To reproduce it is to clone the repo, instantiate it in julia, install the femwell in python, run the Femwell.jl in REPL to compile the module, change line 63 in docs/julia/waveguide.jl from using Femwell.Maxwell.Waveguide to using Main.Femwell.Maxwell.Waveguide, and run waveguide.jl.
The text was updated successfully, but these errors were encountered:
Aha! I guess when I ran the code manually (shift + enter line by line in code editor to see what really happens) under the doc folder, Julia REPL didn't realize the package layout and spun up the wrong env.
Same reason that I put the Femwell under Main scope, I guess if I just use > include("xxx/xxx.jl") in terminal it should run correctly.
Thank you for sharing this nice package for mode analysis!
When running the demo https://helgegehring.github.io/femwell/julia/waveguide.html, when running
modes = calculate_modes(model, ε ∘ τ, λ = 1.55, num = 2, order = 1)
, I encounter the following error.ERROR: ┌ Error: XYAUPD_Exception: Maximum number of iterations taken. All possible eigenvalues of OP has been found.
│ IPARAM(5) returns the number of wanted converged Ritz values.
│ info = 1
└ @ Arpack ~/.julia/packages/Arpack/FCvNd/src/libarpack.jl:47
To reproduce it is to clone the repo, instantiate it in julia, install the femwell in python, run the Femwell.jl in REPL to compile the module, change line 63 in docs/julia/waveguide.jl from
using Femwell.Maxwell.Waveguide
tousing Main.Femwell.Maxwell.Waveguide
, and run waveguide.jl.The text was updated successfully, but these errors were encountered: