Dataset Viewer
Auto-converted to Parquet Duplicate
text
stringlengths
0
21
210 2.113642 0.628815
211 2.093333 0.632971
212 2.074701 0.64022
213 2.058247 0.65027
214 2.044428 0.662726
215 2.033624 0.677104
216 2.026119 0.692846
217 2.022084 0.709346
218 2.02157 0.725978
219 2.024502 0.742127
220 2.030695 0.757211
221 2.039864 0.770711
222 2.051645 0.782182
223 2.065619 0.791269
224 2.081329 0.797702
225 2.098303 0.801303
226 2.116071 0.801977
227 2.134174 0.799702
228 2.152182 0.794527
229 2.169696 0.786554
230 2.186353 0.775934
231 2.201833 0.762855
232 2.215859 0.747534
233 2.228195 0.730211
234 2.238647 0.711138
235 2.247064 0.690577
236 2.25333 0.668791
237 2.257367 0.646041
238 2.259127 0.622583
239 2.258594 0.598662
240 2.255779 0.574512
241 2.250713 0.550351
242 2.243449 0.526383
243 2.234056 0.502793
244 2.222618 0.479749
245 2.209227 0.4574
246 2.193984 0.435879
247 2.176994 0.415298
248 2.158366 0.395753
249 2.138207 0.377323
250 2.116624 0.360073
251 2.093717 0.344052
252 2.069582 0.329297
253 2.044308 0.315833
254 2.017975 0.303676
255 1.99065 0.292834
256 1.962393 0.283309
257 1.933249 0.275099
258 1.903252 0.2682
259 1.87242 0.262608
260 1.84076 0.258323
261 1.808262 0.25535
262 1.774902 0.253703
263 1.740645 0.253408
264 1.705437 0.254506
265 1.669213 0.257058
266 1.631897 0.261153
267 1.593403 0.266905
268 1.553635 0.27447
269 1.512501 0.284047
270 1.469908 0.295889
271 1.425785 0.310314
272 1.380087 0.327715
273 1.332829 0.34857
274 1.284114 0.373451
275 1.234179 0.403018
276 1.183461 0.438003
277 1.132664 0.479151
278 1.082818 0.527113
279 1.035288 0.582284
280 0.991681 0.644611
281 0.953619 0.71346
282 0.922446 0.787636
283 0.898984 0.865593
284 0.883477 0.945728
285 0.875697 1.026626
286 0.875131 1.107175
287 0.881149 1.186571
288 0.893112 1.26426
289 0.910435 1.339872
290 0.932602 1.41316
291 0.959166 1.483954
292 0.989742 1.552132
293 1.023998 1.617601
294 1.061638 1.680282
295 1.102398 1.740108
296 1.146033 1.797015
297 1.192317 1.850943
298 1.241033 1.901836
299 1.291971 1.949642
300 1.344925 1.994311
301 1.399695 2.0358
302 1.456079 2.074072
303 1.513878 2.109097
304 1.572893 2.140852
305 1.632926 2.169323
306 1.693779 2.194508
307 1.755257 2.216411
308 1.817165 2.235048
309 1.879311 2.250446
End of preview. Expand in Data Studio

NanoPhotoNet-MPM Dataset

License: CC BY 4.0 Dataset DOI Model DOI Code DOI

Copyright © 2026 Islam I. Abdulaal and Omar A. M. Abdelraouf. Dataset artifacts are released under CC BY 4.0. Paper: forthcoming.

This dataset contains the Finite Difference Eigenmode (FDE) tables, measured dispersion-index files, and consolidated vector-field tensors used by NanoPhotoNet-MPM, a physics-informed neural surrogate for modal phase-matched SPDC inverse design in monoclinic NbOCl2 ridge waveguides.

The paired model release is available at DOI 10.57967/hf/9068. The archived code release is available at DOI 10.5281/zenodo.18653064.


Files

File Description
data/NbOCl2x-measured-index.txt Measured refractive indices for monoclinic NbOCl2 over the modeled wavelength range
data/SiO2-measured-index.txt Measured refractive indices for the SiO2 substrate
data/neff_775.mat Effective-index table for pump modes at 775 nm
data/neff_1550.mat Effective-index table for signal/idler modes at 1550 nm
data/fde_profiles_128x128.npy Consolidated full-vector electric-field profile tensor
data/fde_profiles_mask.npy Spatial mask tensor for boundary/crop handling during training

Schema

data/fde_profiles_128x128.npy stores a NumPy tensor with shape (280, 6, 16384):

Axis Meaning
280 Paired waveguide geometry samples
6 Real and imaginary parts of Ex, Ey, and Ez
16384 Flattened 128 x 128 transverse grid

The .mat files contain effective-index grids over swept waveguide widths and heights. The measured-index text files provide dispersion inputs for material interpolation.


Loading Example

import numpy as np
import scipy.io as sio

neff_775 = sio.loadmat("data/neff_775.mat")
neff_1550 = sio.loadmat("data/neff_1550.mat")
profiles = np.load("data/fde_profiles_128x128.npy")
mask = np.load("data/fde_profiles_mask.npy")

print("neff_775 keys:", sorted(neff_775.keys()))
print("neff_1550 keys:", sorted(neff_1550.keys()))
print("profiles shape:", profiles.shape)
print("mask shape:", mask.shape)

Generation Summary

The dataset was generated with a full-vectorial FDE workflow over ridge-waveguide width and height sweeps from 100 nm to 1000 nm. Pump samples target 775 nm quasi-TE modes, while signal/idler samples target 1550 nm quasi-TM modes. The consolidated tensor is intended for supervised transverse-field training and downstream physics-informed validation.


Limitations

The dataset is scoped to the simulated NbOCl2 ridge-waveguide design space and the material-index inputs included here. Extrapolation outside the documented geometry, wavelength, or material range should be validated with an independent electromagnetic solver.


Citation

@misc{abdulaal2026nanophotonet_dataset,
  author    = {Islam I. Abdulaal},
  title     = {{NanoPhotoNet-MPM} Dataset},
  year      = {2026},
  publisher = {Hugging Face},
  doi       = {10.57967/hf/9066},
  url       = {https://doi.org/10.57967/hf/9066}
}
Downloads last month
36