Adds a waveguide object in the simulation space.
Syntax |
Description |
---|---|
addwaveguide; |
Adds a waveguide in the simulation space. This function does not return any data. |
Example
The following script commands will create a bent waveguide using 4 poles. For mode details on how the waveguide object generates the shape of the waveguide using the poles take a look at this KB page: Structures - Waveguide .
addwaveguide;
set("base width",600e-9);
set("base height",220e-9);
set("base angle",70);
pole = [0,0; 1,9; 6,9.8; 10,10]*1e-6;
set("poles",pole);
set("material","Si (Silicon) - Palik");
See Also