-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0fb942
commit 8ea28dc
Showing
5 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
clear all, close all, %clc | ||
|
||
I = 50; %A | ||
U = 50; %V | ||
|
||
mu = 0.4; | ||
m = 600; | ||
mW = 1200; | ||
Fmax = mu*m*10; | ||
|
||
P = U*I; | ||
|
||
v = linspace(0, 15/3.6); | ||
|
||
F = P./v; | ||
Fres = 10*(m+mW)*1/1000*(5.7/771*(3.6*v).^2 +1.6)+10*(m+mW)*[0.01;0.02]; | ||
|
||
Ind = find(F > Fmax); | ||
F(end) = 0; | ||
|
||
F(Ind) = Fmax; | ||
|
||
L = 2; | ||
plot(3.6*v, F, 'LineWidth', L) | ||
hold on; | ||
plot(3.6*v, Fres, 'LineWidth', L) | ||
ts = ['Traction curve, $P =$' num2str(U*I) ' W, $\mu =$' num2str(mu) ', $m_L =$' num2str(m) ' kg, $m_{Wz} =$' num2str(mW) ' kg']; | ||
title(ts ,'interpreter','latex') | ||
legend('F_{t/b}', 'F_{R, 1%}', 'F_{R, 2%}') | ||
xlim([0 16]) | ||
xlabel('$v /\left(kmh^{-1}\right)$','interpreter','latex') | ||
ylim([0 1.1*Fmax]) | ||
ylabel('$F$/N','interpreter','latex') | ||
grid on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
clear all, close all, clc | ||
|
||
I = 60; %A | ||
U = 50; %V | ||
|
||
mu = 0.3; | ||
m = 650; | ||
mW = 1200; | ||
Fmax = mu*m*10; | ||
|
||
P = U*I; | ||
|
||
v = linspace(0, 15/3.6); | ||
|
||
F = P./v; | ||
Fres = 10*(m+mW)*1/1000*(5.7/771*(3.6*v).^2 +1.6)+10*(m+mW)*[0.01;0.02]; | ||
|
||
I = find(F > Fmax); | ||
|
||
F(I) = Fmax; | ||
|
||
L = 2; | ||
plot(3.6*v, F, 'LineWidth', L) | ||
hold on; | ||
plot(3.6*v, Fres, 'LineWidth', L) | ||
ts = ['Traction curve, $\mu =$' num2str(mu) ', $m_L =$' num2str(m)]; | ||
title(ts ,'interpreter','latex') | ||
legend('F_{t/b}', 'F_{R | ||
xlim([0 1.1*15]) | ||
xlabel('v/kmh^{-1}') | ||
ylim([0 1.1*Fmax]) | ||
ylabel('F/N') | ||
grid on |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.