File:Loi de mouvement sinmod en acceleration.svg
Original file (SVG file, nominally 551 × 659 pixels, file size: 104 KB)
Captions
Summary
[edit]DescriptionLoi de mouvement sinmod en acceleration.svg |
Français : Loi de mouvement sinusoïdal modifié en accélération (sin-mod).
English: Modified sinusoidal (mod-sin) acceleration motion law. |
Date | |
Source | Own work |
Author | Cdang |
SVG development InfoField | This structural formula was created with Batik. This file uses embedded text that can be easily translated using a text editor. |
Equations:
1. t ∈ [0 ; T/8]
2. t ∈ [T/8 ; 7T/8]
3. t ∈ [7T/8 ; T]
Scilab source
This media was created with Scilab, a free open-source software. Here is a listing of the Scilab source used to create this file. |
function [t1, t2, t3] = indice(t)
t1 = (t <= 1/8);
t2 = (t > 1/8) & (t <= 7/8);
t3 = (t>7/8);
endfunction
function [j]=jerk(t)
[t1, t2, t3] = indice(t)
j = zeros(t);
coef = 4*%pi*%pi/(4 + %pi)
j(t1) = coef*4*%pi*cos(4*%pi*t(t1));
j(t2) = -coef*4/3*%pi*sin(4*%pi/3*(t(t2) - 1/8));
j(t3) = coef*4*%pi*cos(4*%pi*t(t3));
endfunction
function [a]=acceleration(t)
[t1, t2, t3] = indice(t)
a = zeros(t);
coef = 4*%pi*%pi/(4 + %pi);
a(t1) = coef*sin(4*%pi*t(t1));
a(t2) = coef*cos(4*%pi/3*(t(t2) - 1/8));
a(t3) = coef*sin(4*%pi*t(t3));
endfunction
function [v] = vitesse(t)
[t1, t2, t3] = indice(t)
coef = %pi/(%pi + 4);
v = zeros(t);
v(t1) = coef*(1 - cos(4*%pi*t(t1)));
v(t2) = coef*(1 + 3*sin(4*%pi/3*(t(t2) - 1/8)));
v(t3) = coef*(1 - cos(4*%pi*t(t3)));
endfunction
function [x] = position(t)
[t1, t2, t3] = indice(t)
x = zeros(t);
coef = %pi/(%pi + 4);
x(t1) = coef*(t(t1) - 1/(4*%pi)*sin(4*%pi*t(t1)));
x(t2) = coef*(t(t2) - 9/(4*%pi)*cos(4*%pi/3*(t(t2) - 1/8)) + 2/%pi);
x(t3) = coef*(t(t3) - 1/(4*%pi)*sin(4*%pi*t(t3)) + 4/%pi);
endfunction
// tracé
t = 0:0.005:1;
j = jerk(t);
a = acceleration(t);
v = vitesse(t);
x = position(t);
scf(0);
clf;
subplot(4, 1, 1)
plot(t, x)
xtitle("position", "t/T", "$x/x_\mathrm{f}$")
subplot(4, 1, 2)
plot(t, v)
xtitle("vitesse", "t/T", "$v/(x_\mathrm{f}/\mathrm{T})$")
subplot(4, 1, 3)
plot(t, a)
xtitle("accélération", "t/T", "$a/(x_\mathrm{f}/\mathrm{T}^2)$")
subplot(4, 1, 4)
plot(t, j)
xtitle("à-coup", "t/T", "$j/(x_\mathrm{f}/\mathrm{T}^3)$")
Licensing
[edit]- You are free:
- to share – to copy, distribute and transmit the work
- to remix – to adapt the work
- Under the following conditions:
- attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
- share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
File history
Click on a date/time to view the file as it appeared at that time.
Date/Time | Thumbnail | Dimensions | User | Comment | |
---|---|---|---|---|---|
current | 14:21, 18 June 2019 | 551 × 659 (104 KB) | Minorax (talk | contribs) | validate // Editing SVG source code using User:Rillke/SVGedit.js; upload handled by User:Rillke/MwJSBot.js | |
08:21, 31 August 2018 | 551 × 659 (104 KB) | Cdang (talk | contribs) | User created page with UploadWizard |
You cannot overwrite this file.
File usage on Commons
The following page uses this file:
File usage on other wikis
The following other wikis use this file:
- Usage on fr.wikipedia.org
Metadata
This file contains additional information such as Exif metadata which may have been added by the digital camera, scanner, or software program used to create or digitize it. If the file has been modified from its original state, some details such as the timestamp may not fully reflect those of the original file. The timestamp is only as accurate as the clock in the camera, and it may be completely wrong.
Width | 551 |
---|---|
Height | 659 |