Multiple recorders for same module instance? #269
-
Is it possible to instantiate multiple recorders for the same instance of a module? For example: snTransLog = sNavObject.transOutMsg.recorder(samplingTime)
snTransLog2 = sNavObject.transOutMsg.recorder(samplingTime2)
scSim.AddModelToTask(simTaskName, snTransLog)
scSim.AddModelToTask(simTaskName, snTransLog2) It's not working for me, so I was wondering if this just ends up pointing to the same recorder. |
Beta Was this translation helpful? Give feedback.
Answered by
patrickwalton
Mar 28, 2023
Replies: 1 comment
-
Moved to a simpler script and confirmed that they are separate recorders. This can be used to log the same data with different time windows. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
patrickwalton
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Moved to a simpler script and confirmed that they are separate recorders. This can be used to log the same data with different time windows.