-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calculation of effective area for Spontaneous Four-wave Mixing (SFWM) #130
Comments
Looks like a great start @Kunyuan-LI ! Three quick things on the first look:
I'm actually a bit confused that this doesn't fail 😅 E[0] should be a 2d vector field. I'd guess what you want to do here is
to get the scalar product of the E. But this also confuses me a bit - the integral you posted in the end doesn't seem to have any vectors inside but uses scalars.
and you'll get real fields. While this can still give a random sign to the integral (as the sign of the eigenmode is not defined), we'll get something real :) Could you make a PR out of this like @elizaleung830 ? That's easiest to discuss/test/improve and in the end we would also get a nice extra example :) |
Thank you for your answer! Indeed, the mistake about the normalization of E is quite obvious😅. However, maybe getting it right could be helpful for the subsequent calculations?😂 In the numerical integration of finite elements, for normalization, what we actually consider is the sum of the calculated separately on each element of the basis. Considering needs to be modified as well because And for the complex epsilons, yes I think you are right. As we just concern about the effective refractive index For the PR sure I'll make it ASAP.😄 |
Hello, I've just made a PR, you can now critique my coding.😂 |
Hello,
Just as @elizaleung830 I'm trying to calculate the effective area, but for Spontaneous Four-wave Mixing (SFWM), which is a third-order non-linear effect and the Aeff needs to take into account the interaction between the electric field distributions of three modes (we consider a degenerate pump, which means there are two identical pumps).
The goal is to replicate the results found in the Ansys Lumerical tutorial on Spontaneous Four-Wave Mixing (SFWM) in a Microring Resonator Photon Source, as documented at https://optics.ansys.com/hc/en-us/articles/15100783091731, following the methodology outlined in the publication https://doi.org/10.1070/QEL16511:
Where$u_p$ , $u_s$ , $u_i$ are the mode function describing the transverse spatial distribution of the field and normalised $\int|u(x, y)|^{2} \mathrm{~d} x \mathrm{~d} y=1$ .
So, for a mode in femwell, does mode.E correspond to the unnormalized electric field distribution? I added normalization in femwell.maxwell.waveguide and calculated the method for Aeff, but I obtained a rather strange result.
Function added (for testing I unfreeze the class to add a E0 for the normalized electric field):
And for the main code:
After confirming that the electric field distribution was normalized, I obtained a complex number with a negative real part for
?According to the comparison with Lumerical's results, the Aeff should be on the order of$0.469 \ \text{um}^2$ .
The text was updated successfully, but these errors were encountered: