optical force on particle placed inside nanobeam cavity #1953
Unanswered
TadeasManka
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Gradient force is not the only kind of radiation pressure. (e.g. planewave has constant intensity, but still exerts a force.) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I would like to know your opinions no my simulation results.
I have this device (very similar to holly_wvg_cavity in tutorials). We work in 2D, res = 60
The only difference is that the main mode is not propagating in dielectric but in the air-holes...ignore slight difference in number of holes...
I placed the particle (infinite cylinder) inside the central hole and enclosed it with box of ForceRegions.
r_dist = 0.075
force_reg1 = mp.ForceRegion(center=mp.Vector3(x=+r_dist), direction=mp.X, weight=+1, size=mp.Vector3(y=2*r_dist))
force_reg2 = mp.ForceRegion(center=mp.Vector3(x=-r_dist), direction=mp.X, weight=-1, size=mp.Vector3(y=2*r_dist))
force_reg3 = mp.ForceRegion(center=mp.Vector3(y=+r_dist), direction=mp.Y, weight=+1, size=mp.Vector3(x=2*r_dist))
force_reg4 = mp.ForceRegion(center=mp.Vector3(y=-r_dist), direction=mp.Y, weight=-1, size=mp.Vector3(x=2*r_dist))
par_force = sim.add_force(fcen, df, nfreq, force_reg1, force_reg2, force_reg3, force_reg4)
The particle (r = 0.05) as well as the box (r_dist = 0.075) are in the vacuum and the box is not touching the particle. I insert a Ey gaussian pulse on the left of the device and let it propagate to the right, where the fields are accumulated. The sim is stopped, when the fields decays by 1e-3. The transmission spectrum looks like this (transmission of device/transmission of normalization run), which is what I expected
On the other hand if we look on force spectrum (force/psd of only wvg) we get this:
My question is, isn't this wrong? The force should be directly proportional to grad of intensity and the intensity at the center should be flat (max value but flat)...so I would expect no force at all at this equilibrium position. I would like to know your opinions...thanks.
Beta Was this translation helpful? Give feedback.
All reactions