How to integrate given the two data columns

8 Ansichten (letzte 30 Tage)
Grigorios Chatziandreou
Grigorios Chatziandreou am 29 Apr. 2022
Beantwortet: Torsten am 29 Apr. 2022
Hello. I have used ode45 to figure out current wrt time.
I have my matrix tz and my matrix CURRENT for values of current with time from tz(1)=0 to tz(end). How can I intagrate it? Any clever way if I do not know the time step in tz?

Antworten (2)

Riccardo Scorretti
Riccardo Scorretti am 29 Apr. 2022
Most probably like this:
CHARGE = sum(CURRENT(1:end-1) .* diff(tz));
  1 Kommentar
Riccardo Scorretti
Riccardo Scorretti am 29 Apr. 2022
Something better can be done, but if you have a large number of points, it will give more or less the same result.

Melden Sie sich an, um zu kommentieren.


Torsten
Torsten am 29 Apr. 2022
Add the differential equation
dz/dt = CURRENT, z(t0) = 0
to your system of ODEs.
z will automatically be the integrated CURRENT over time.

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by