Storing post processing values

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.

  1. .param can be saved with .option listparam
  2. two signal math can be saved into a node voltage with B-source

store-param.qsch (2.7 KB)

1 Like

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.

1 Like