Hello,
Does anyone know if it is possible to modified the number of points that you get in the simulation? for example, when I try to export the file of the S11 parameter, can I get a particular number of points?
I can do it using python, but I prefer configure the software to get faster simulations.
Not directly- You can, as you said, use python's built in interpolate function (from recipe 3.10) in combination with the export S parameters script (this is just the interpolate portion):
from empro.toolkit import dataset, graphing
s12 = empro.toolkit.dataset.getResult(sim=2, run=1, object='Port2', result='SParameters')
newFreq = dataset.makeRange(1e9, 10e9, .01e9, name="Frequency", unitClass=empro.units.FREQUENCY)
s12bis = dataset.interpolate(s12, dimensions=[newFreq])
graphing.showXYGraph(s12bis)
Alternatively, you can use the standard Sparameter export, and feed the data into a S parameter block in ADS, which will do the interpolation for you based on the frequency sweep block parameters you use. Then, the write_snp() function in a measurement block will output your s-parameters based on your sweep.