|
|
Partielle Differentialgleichung |
|
A1705 |
Forum-Newbie
|
|
Beiträge: 1
|
|
|
|
Anmeldedatum: 03.09.09
|
|
|
|
Wohnort: ---
|
|
|
|
Version: ---
|
|
|
|
|
|
Verfasst am: 03.09.2009, 19:25
Titel: Partielle Differentialgleichung
|
|
|
|
|
Hallo,
ich muss ein Programm zur numerischen Lösung der Aufgabe:
y_t - y_xx = 0; in (0,L)x(0,T)
y_x(0,t) = 0; in (0,T)
y_x(L,t) + y(L,t) = u(t); in (0,T)
y(x,0) = 0; in (0,l)
im Matlab programmieren.
Ich soll implizite Euler Verfahre bezüglich t verwenden. Die Steuerung u soll entsprechend der Zerlegung von (0,T) als Treppenfunktion eingegeben werden.
Ich habe ein Programm geschrieben, aber für u = 0, aber ich habe keine Ahnung, was weiter machen muss
Anbei Quellencode aus Matlab:
function pdex1
m = 0;
x = linspace(0,1,20);
t = linspace(0,2,5);
sol = pdepe(m,@pdex1pde,@pdex1ic,@pdex1bc,x,t);
y = sol(:,:,1);
% A surface plot is often a good way to study a solution.
surf(x,t,y)
title('Numerical solution computed with 20 mesh points.')
xlabel('Distance x')
ylabel('Time t')
function [c,f,s] = pdex1pde(x,t,y,DyDx)
c = 1;
f = DyDx;
s = 0;
function y0 = pdex1ic(x)
y0 = 0;
function [pl,ql,pr,qr] = pdex1bc(xl,yl,xr,yr,t)
pl = 0;
ql = yl;
pr = yr;
qr = 1;
Vielen vielen Dank im voraus!
|
|
|
|
|
|
|
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.
|
|