Hello, good morning
There are ways to store in a .param x the results of a simulation process? I will like to do some data postprocessing, like implement some equations
Ex:
.param modulation = signal1 * signal2
Hello, good morning
There are ways to store in a .param x the results of a simulation process? I will like to do some data postprocessing, like implement some equations
Ex:
.param modulation = signal1 * signal2
Not entirely sure what you are looking for.
.param is pre-processing and does not update during simulation except with .step. Your example seems to be looking for multiplying two signals together and storing the results. Here is an example to show you.
store-param.qsch (2.7 KB)
Hello, thank you. Its exactly what I was searching. Because a need to do some postprocessing in data, and I had observed that the .param doesn’t works after de processment. Thats fits well. Thank you.