update a parameter in function block each timestep in simulink

1 Ansicht (letzte 30 Tage)
Ameen Bassam
Ameen Bassam am 16 Mär. 2023
Kommentiert: Ameen Bassam am 17 Mär. 2023
I have a parameter or a variable (T) which should increase or decrease with a (delta_T) and it has an initial value of (T_0).
So, I defined (delta_T = ....) and (T_0 = 20) and it should be a loop (T = T + delta_T) which updates the value of T each time step.
I will put this function in a block in Simulink.
I hope my question is clear and many thanks in advance.
  1 Kommentar
Ameen Bassam
Ameen Bassam am 17 Mär. 2023
I have tried the following but failed to update T
function [delta_T,T] = fcn(u)
m=100;
T = 20;
delta_T = u/m;
T_max = 100;
while T <= T_max
T = T + delta_T;
end

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Fangjun Jiang
Fangjun Jiang am 16 Mär. 2023
Use the "Ramp" block to generate such a signal.

Kategorien

Mehr zu Simulink Environment Customization finden Sie in Help Center und File Exchange

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by