Skip to content

Commit

Permalink
add sio2 and air sim values
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafacc committed Jul 18, 2023
1 parent 4169173 commit c7ef629
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,16 @@ def getDeviceParameter(deviceID, devicePrefix, deviceSuffix = ''):
plt.show()

# %% overlay simulation data
#simulation results (220 nm SOI, air clad)
period_sim_air = [313, 315, 317, 319, 321, 323, 324, 325, 326]
wavl_sim_air = [1517, 1522, 1527, 1532, 1538, 1543, 1544.74, 1548.9, 1549.85]

#simulation results (220 nm SOI, SiO2 clad)
period_sim_sio2 = [313, 315, 317, 319, 321, 323, 325]
wavl_sim_sio2 = [1517, 1522, 1527, 1532, 1538, 1543, 1548.9]
period_sim_sio2 = [313, 315, 317, 319, 321, 323]
wavl_sim_sio2 = [1536.64, 1542.24, 1547.85, 1553.45, 1559.06, 1564.56]

plt.figure()
plt.scatter(period, WL, color='r', marker='x', label='Expe riment')
plt.scatter(period, WL, color='r', marker='x', label='Experiment')
plt.scatter(period_sim_sio2, wavl_sim_sio2, color='b', marker='o', label='Simulation')
plt.legend()
plt.ylabel('Bragg Wavelength [nm]', color = 'black')
Expand Down

0 comments on commit c7ef629

Please sign in to comment.