ScrSetNearFieldMeshingFrequencyPoints
|
For Near Field simulations, selects the Points meshing frequency. |
|
| UI Command: | Simulation > Compute Near Field. For Meshing Frequencies for the Observation Mesh, select Points and enter values. |
| Syntax: | obj.ScrSetNearFieldMeshingFrequencyPoints(<freqPoints>) |
| Parameters: |
ARRAY freqPoints (contains strings in ascending order; uses Hz) |
| Return Value: |
INT
|
| VB Example: |
obj.ScrSetNearFieldMeshingFrequencyPoints freqPoints #Array of frequencies Dim freqPoints (3) freqPoints( 0 ) = "5e+10" freqPoints( 1 ) = "1e+11" freqPoints( 2 ) = "1.2e+11" |
| IPY Example: |
oDoc.ScrSetNearFieldMeshingFrequencyPoints(['5e+10','1e+11','1.2e+11']) |