Adds a frequency domain field profile monitor to the simulation environment. Unlike the 'field and power' monitor, the 'profile' monitor does not snap to the nearest mesh cell and uses interpolation to record the data exactly where the monitor is located. This can be useful in a few situations, but the extra interpolation required can slightly reduce the accuracy of the data. In most situations, we recommend using the 'field and power' monitor.
Syntax |
Description |
---|---|
addprofile; |
Adds a field profile monitor to the simulation environment. This function does not return any data. |
Example
The following script commands will add a 2D z-normal frequency domain field profile monitor to the simulation region and set its dimension.
addprofile; set("name","field_profile"); set("monitor type",7); # 2D z-normal set("x",0); set("x span",5e-6); set("y",0); set("y span",5e-6); set("z",0);
See Also