フィルターのクリア

I want to perform this time derivative?

3 ビュー (過去 30 日間)
SUBHAM HALDAR
SUBHAM HALDAR 2024 年 6 月 15 日
編集済み: Torsten 2024 年 6 月 21 日
i want to perfrom this time derivative of volume which depends upon Ab and r_dot_L, these factor are calculated before and has an array of (600(time tb) x 412(distance X)) both of the values are time dependent and changes with respect to X.

採用された回答

Torsten
Torsten 2024 年 6 月 16 日
編集済み: Torsten 2024 年 6 月 16 日
From your description, you have 412 different dV_c/dt curves over time, one curve for each distance X. And now ? Do you want to reconstruct the 412 V_c curves over time ?
If you only want to compute dV_c/dt, just multiply the two matrices elementwise:
dV_c_dt = Ab.*r_dot_L
  2 件のコメント
SUBHAM HALDAR
SUBHAM HALDAR 2024 年 6 月 21 日
And if i want to obtain the Vc, what opeartion does i need to perform?
Torsten
Torsten 2024 年 6 月 21 日
編集済み: Torsten 2024 年 6 月 21 日
If you have the vector t of 600 times corresponding to the 600 x 412 dV_c_dt values, you can get an approximation of the V_c values over time by the command
dV_c_dt = Ab.*r_dot_L;
V_c = V_c0 + cumtrapz(t,dV_c_dt)
where V_c0 is V_c at time t(1).

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeOrdinary Differential Equations についてさらに検索

タグ

製品


リリース

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by