Modes¶
modes ¶
hg ¶
hg(Beam, N, M, z=0)
Generate a Hermite-Gaussian (HG) mode.
The mode is evaluated at the propagation distance z using the
paraxial Gaussian-beam solution. The transverse mode orders are N
and M along the x- and y-directions, respectively, giving a total
transverse order of N + M.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid, beam waist, wavelength, and beam center. |
required |
N
|
int
|
Hermite-Gaussian mode order along the x-axis. |
required |
M
|
int
|
Hermite-Gaussian mode order along the y-axis. |
required |
z
|
float
|
Propagation distance along the optical axis, in meters. Default is 0. |
0
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued transverse field with shape |
Source code in structured_optics\modes.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | |
hg_astigmatic ¶
hg_astigmatic(Beam, N, M, wx, wy, z=0)
Generate an astigmatic Hermite-Gaussian (HG) mode.
Unlike :func:hg, this function allows independent beam waists along
the x- and y-directions. The two transverse dimensions therefore have
independent Rayleigh ranges and beam-width evolution.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid, wavelength, and beam center. |
required |
N
|
int
|
Hermite-Gaussian mode order along the x-axis. |
required |
M
|
int
|
Hermite-Gaussian mode order along the y-axis. |
required |
wx
|
float
|
Beam waist along the x-axis at |
required |
wy
|
float
|
Beam waist along the y-axis at |
required |
z
|
float
|
Propagation distance along the optical axis, in meters. Default is 0. |
0
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued transverse field with shape |
Source code in structured_optics\modes.py
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | |
lg ¶
lg(Beam, l, p, z=0)
Generate a Laguerre-Gaussian (LG) mode.
The mode is described in cylindrical coordinates by the azimuthal
index l and radial index p. Its transverse mode order is
|l| + 2p.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid, beam waist, wavelength, and beam center. |
required |
l
|
int
|
Azimuthal mode index. The sign determines the azimuthal phase winding and therefore the sign of the orbital angular momentum. |
required |
p
|
int
|
Radial mode index. Must be a non-negative integer. |
required |
z
|
float
|
Propagation distance along the optical axis, in meters. Default is 0. |
0
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued transverse field with shape |
Source code in structured_optics\modes.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | |
nbessel ¶
nbessel(Beam, N, z=0)
Generate a normalized finite-grid Bessel mode.
The transverse field is proportional to a Bessel function of the first
kind. The radial wave number is chosen such that the first zero of
J_|N| occurs at r = Beam.waist.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid, wavelength, beam waist, and beam center. |
required |
N
|
int
|
Bessel mode order. The magnitude determines the Bessel-function order, while the sign determines the azimuthal phase winding. |
required |
z
|
float
|
Propagation distance along the optical axis, in meters. Default is 0. |
0
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued normalized transverse field with shape
|
Source code in structured_optics\modes.py
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | |
gbessel ¶
gbessel(Beam, N, r0)
Generate a Gaussian-Bessel beam.
The field consists of a Bessel function multiplied by a Gaussian envelope. This produces a spatially localized approximation to an ideal Bessel beam.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid, beam waist, wavelength, and beam center. |
required |
N
|
int
|
Bessel mode order. The sign determines the azimuthal phase winding. |
required |
r0
|
float
|
Parameter controlling the radial spatial frequency of the Bessel component, in meters. |
required |
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued normalized transverse field with shape
|
Source code in structured_optics\modes.py
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | |
lg_prod ¶
lg_prod(Beam, N, ls, centers)
Generate a product of displaced LG-like modes.
The resulting field is constructed as the product of N factors,
each associated with an azimuthal index and transverse center. This
provides a convenient way to construct composite fields containing
multiple localized orbital-angular-momentum structures.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid, beam waist, and beam center. |
required |
N
|
int
|
Number of factors to multiply. |
required |
ls
|
array_like of int or None
|
Azimuthal indices for the individual factors. If |
required |
centers
|
array_like of shape (N, 2) or None
|
|
required |
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued normalized transverse field with shape
|
Source code in structured_optics\modes.py
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 | |
frac_oam ¶
frac_oam(Beam, Ma, n_modes, beta, theta_0, z=0)
Generate a fractional orbital-angular-momentum field using an LG superposition.
A fractional OAM value is represented as a finite superposition of integer-order Laguerre-Gaussian modes. The selected integer orders are centered around the integer part of the requested fractional OAM.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid, beam waist, wavelength, and beam center. |
required |
Ma
|
float
|
Desired fractional orbital angular momentum index. |
required |
n_modes
|
int
|
Number of integer-order LG modes included in the superposition. |
required |
beta
|
float
|
Angular parameter used in the complex expansion coefficients, in radians. |
required |
theta_0
|
float
|
Reference angular position used in the expansion coefficients, in radians. |
required |
z
|
float
|
Propagation distance along the optical axis, in meters. Default is 0. |
0
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued normalized transverse field with shape
|
Source code in structured_optics\modes.py
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 | |
frac_oam_qs ¶
frac_oam_qs(Beam, Ma, n_modes, beta, theta_0, z=0)
Generate a quasi-stable fractional orbital-angular-momentum field.
The field is constructed as a finite superposition of
Laguerre-Gaussian modes with integer azimuthal indices surrounding the
requested fractional OAM value. Unlike :func:frac_oam, the radial
index of each LG component is selected according to the fractional
OAM index and the chosen number of modes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid, beam waist, wavelength, and beam center. |
required |
Ma
|
float
|
Desired fractional orbital angular momentum index. |
required |
n_modes
|
int
|
Number of integer-order LG modes included in the superposition. |
required |
beta
|
float
|
Angular parameter used in the complex expansion coefficients, in radians. |
required |
theta_0
|
float
|
Reference angular position used in the expansion coefficients, in radians. |
required |
z
|
float
|
Propagation distance along the optical axis, in meters. Default is 0. |
0
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued normalized transverse field with shape
|
Source code in structured_optics\modes.py
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 | |
IG_even ¶
IG_even(Beam, p, m, q, z=0)
Generate an even Ince-Gaussian (IG) mode.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid, beam waist, wavelength, and beam center. |
required |
p
|
int
|
Ince-Gaussian order. |
required |
m
|
int
|
Ince-Gaussian mode index. |
required |
q
|
float
|
Ellipticity parameter used to define the elliptic coordinates. |
required |
z
|
float
|
Propagation distance along the optical axis, in meters. Default is 0. |
0
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued normalized transverse field with shape
|
Source code in structured_optics\modes.py
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 | |
IG_odd ¶
IG_odd(Beam, p, m, q, z=0)
Generate an odd Ince-Gaussian (IG) mode.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid, beam waist, wavelength, and beam center. |
required |
p
|
int
|
Ince-Gaussian order. |
required |
m
|
int
|
Ince-Gaussian mode index. |
required |
q
|
float
|
Ellipticity parameter used to define the elliptic coordinates. |
required |
z
|
float
|
Propagation distance along the optical axis, in meters. Default is 0. |
0
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued normalized transverse field with shape
|
Source code in structured_optics\modes.py
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 | |
HInceG ¶
HInceG(Beam, p, m, q, helicity, z=0)
Generate a Hermite-Ince-Gaussian (HIG) mode.
The HIG field is constructed as a complex combination of the even and odd Ince-Gaussian modes with a specified helicity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid, beam waist, wavelength, and beam center. |
required |
p
|
int
|
Ince-Gaussian order. |
required |
m
|
int
|
Ince-Gaussian mode index. |
required |
q
|
float
|
Ellipticity parameter used to define the elliptic coordinates. |
required |
helicity
|
int or float
|
Helicity of the HIG mode. The sign determines the relative phase between the even and odd Ince-Gaussian components. |
required |
z
|
float
|
Propagation distance along the optical axis, in meters. Default is 0. |
0
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued normalized transverse field with shape
|
Source code in structured_optics\modes.py
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 | |
circle ¶
circle(Beam, center=None, radius=None)
Generate a circular binary mode.
The field has unit amplitude inside the specified circular aperture and zero amplitude outside it.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid and default beam center and waist. |
required |
center
|
tuple of float or None
|
|
None
|
radius
|
float or None
|
Circle radius, in meters. If |
None
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued normalized binary field with shape
|
Source code in structured_optics\modes.py
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 | |
square ¶
square(Beam, center=None, side_length=None)
Generate a square binary mode.
The field has unit amplitude inside the square and zero amplitude outside it.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid and default beam center and waist. |
required |
center
|
tuple of float or None
|
|
None
|
side_length
|
float or None
|
Side length of the square, in meters. If |
None
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued normalized binary field with shape
|
Source code in structured_optics\modes.py
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 | |
triangle ¶
triangle(Beam, center=None, side_length=None)
Generate an equilateral triangular binary mode.
The triangle is centered at the specified position and oriented with one vertex pointing upward.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid and default beam center and waist. |
required |
center
|
tuple of float or None
|
|
None
|
side_length
|
float or None
|
Side length of the equilateral triangle, in meters. If |
None
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued normalized binary field with shape
|
Notes
The triangle is defined by three vertices and evaluated using barycentric-coordinate sign tests.
Source code in structured_optics\modes.py
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 | |
lp ¶
lp(Beam, l, m, n_core, n_clad, parity='cos')
Generate a scalar linearly polarized (LP) fiber mode.
The transverse mode is calculated using the scalar approximation for a step-index optical fiber. The field is represented by a Bessel function inside the fiber core and a modified Bessel function in the cladding.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid, where
|
required |
l
|
int
|
Azimuthal mode index. |
required |
m
|
int
|
Radial mode index. |
required |
n_core
|
float
|
Refractive index of the fiber core. |
required |
n_clad
|
float
|
Refractive index of the fiber cladding. |
required |
parity
|
(cos, sin)
|
Angular parity of the mode. |
"cos"
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued scalar transverse field with shape
|
Notes
The normalized propagation parameters u and v are obtained
using :func:get_LP_params inside 'structured_optics/utils.py'.
Source code in structured_optics\modes.py
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 | |
lp_hel ¶
lp_hel(Beam, l, m, n_core, n_clad)
Generate a helical scalar LP fiber mode.
The helical mode is constructed as a complex superposition of the
cosine- and sine-parity scalar LP modes. The sign of l determines
the sign of the relative phase between these two components.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
Beam
|
Beam
|
Beam object defining the transverse computational grid, where
|
required |
l
|
int
|
Azimuthal mode index. Its sign determines the helicity of the resulting mode. |
required |
m
|
int
|
Radial mode index. |
required |
n_core
|
float
|
Refractive index of the fiber core. |
required |
n_clad
|
float
|
Refractive index of the fiber cladding. |
required |
Returns:
| Type | Description |
|---|---|
ndarray
|
Complex-valued scalar transverse field with shape
|
Notes
For positive l, the mode is constructed as
(LP_cos + i LP_sin) / sqrt(2).
For negative l, the relative phase is reversed.
Source code in structured_optics\modes.py
705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 | |