Replies: 2 comments
-
try using solver.step |
Beta Was this translation helpful? Give feedback.
0 replies
-
You can also add two solutions: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am running a simulation where the current input which depends on time in simulation. Basically, for each second, a different current input is given like this:
solution = sim.solve([t,t+1],inputs={"Current function [A]" : I]})
where I changes after each second of simulation. Due to it not being an experiment, I cannot usestarting_solution
argument while solving (I do useset_initial_conditions_from
to ensure correct solution). So, is there any way in which I can "add" solutions for same cell but different times together? I can store an array of solutions, I just need to be able to quickplot it with entire time, instead of just the last one second.Beta Was this translation helpful? Give feedback.
All reactions