How do I change only one variable in an equation and plot the response for this equation on a graph for all of the different values of this one variable?

5 views (last 30 days)
Trying to plot a resonance curve, but using multiple vlues for the damping ratio variable. I know and can successfully plot the resonance curves individually but how do i write the script so that it knows to change the damping ratio value and plot each response for each of the different damping ratios on one graph?
I tried setting it up as an array i.e. DR = [0, 0.2, 0.4, 0.6, 0.8];
but it just came up with the error "Arrays have incompatible sizes for this operation".
Here is part of my code for just one damping ratio value.
DR = 0; % Damping ratio
A = (F/K) ./ sqrt(((1 - (r.^2)).^2) + (4.*DR.^2.*r.^2));

Answers (2)

Catalytic
Catalytic on 29 Mar 2023
Edited: Catalytic on 29 Mar 2023
F=1;K=1;
DR = [0, 0.2, 0.4, 0.6, 0.8];
r=linspace(0,5)';
A = (F/K) ./ sqrt(((1 - (r.^2)).^2) + (4.*DR.^2.*r.^2));
plot(r,A); xlabel r;ylabel A; legend("DR="+DR)

Torsten
Torsten on 29 Mar 2023
Moved: Torsten on 29 Mar 2023
So you want to plot A against r for different values of DR ?
F = 1.0;
K = 1.0;
r = 0:0.01:1;
DR = [0.1, 0.2, 0.4, 0.6, 0.8].';
A = (F/K) ./ sqrt(((1 - (r.^2)).^2) + (4.*DR.^2.*r.^2));
plot(r,A)
grid on

Categories

Find more on Programming in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!