|
loksip |
Forum-Newbie
|
|
Beiträge: 1
|
|
|
|
Anmeldedatum: 12.06.20
|
|
|
|
Wohnort: ---
|
|
|
|
Version: ---
|
|
|
|
|
|
Verfasst am: 12.06.2020, 23:36
Titel: Octave Fehlersuche
|
|
|
|
|
Guten Tag
Ich brauche unbedingt Hilfe für mein Projekt Fahrzeugfederung.
Unten könnt ihr den Code und Fehleranzeige sehen
Könnte mir jemand weiterhelfen.
Langsam bin ich am verzweifeln^^
%xr= Intervall von x z.B. [-1.5, 1.5]
%y0= Der y-Wert des Anfangsproblem
%h= Schrittweite
%F= DGL
function [ft,fy] = euler_alex (a,b,y0,h,F);
N=round((b-a)/h);
t(1)=a(1); %xr(1)=x0
y(1,: )=y0;
x(N+1)=0;
y(N+1,: )=0;
for n=1:N
y(n+1,: )=y(n,: ).*F(t(n),y(n,: )).*h;
t(n+1)=t(1)+n*h;
fprintf('x=%f,y=%f\n',t(n+1),y(n+1,: ))
end
endfunction
%Aufgabe 4d
%Berechnungsparameter
a=0;
b=5;
h=0.6;
%Parameter
cr=90000;
ca=20000;
dr=100;
da=1000;
mr=20;
ma=250;
yboden=0.1;
yBodenabl=0;
%Anfangswerte
y0=0.1;
%Anfangswertproblem
%Berechnung Konstanten
%Funktionen
%y1=y(2); =y(1)
%y2=-ca/ma.*(y(1)-y(3); =y2'
%y3=y(4); =y3'
%y4=-cr/mr.*(y(3)-yBoden)-dr/mr.*(y(4)-yBodenabl)+ca/mr(y(1)-y(3)+da/mr.*(y(2)-y(4); =y(4)
F=@(t,y) [-ca/ma.*(y(1)-y(3)),y(4),-cr/mr.*(y(3)-yBoden)-dr/mr.*(y(4)-yBodenabl)+ca/mr.*(y(1)-y(3))+da/mr.*(y(2)-y(4))];
[t,y]= euler_alex(a,b,y0,h,F)
y1=y(:,1);
y2=y(:,2);
y3=y(:,3);
y4=y(:,4);
%Diagramm
%subplot(1,2,1)
plot(t,y1,'c' ,t,y2,'b', t,y3,'g',t,y4,'r')
grid on;
axis([-100 100 -100 100]);
xlabel('Zeit t');
ylabel('y-Wert');
title('Dämpfer');
error: y(3): out of bound 1
error: called from
Alex>@<anonymous>
euler_alex at line 19 column 11
Alex at line 36 column 6
Beschreibung: |
|
Download |
Dateiname: |
Alex.m |
Dateigröße: |
888 Bytes |
Heruntergeladen: |
427 mal |
|
|
|
|
|
|
|
Einstellungen und Berechtigungen
|
|
Du kannst Beiträge in dieses Forum schreiben. Du kannst auf Beiträge in diesem Forum antworten. Du kannst deine Beiträge in diesem Forum nicht bearbeiten. Du kannst deine Beiträge in diesem Forum nicht löschen. Du kannst an Umfragen in diesem Forum nicht mitmachen. Du kannst Dateien in diesem Forum posten Du kannst Dateien in diesem Forum herunterladen
|
|
Impressum
| Nutzungsbedingungen
| Datenschutz
| FAQ
| RSS
Hosted by:
Copyright © 2007 - 2024
goMatlab.de | Dies ist keine offizielle Website der Firma The Mathworks
MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.
|
|