Fehler beim Lösen einer DGL < Maple < Mathe-Software < Mathe < Vorhilfe
|
hi
ich habe ein beispiel abgetippt das aber mit maple 7 erstellt wurde,
ich habe die Version 12 und naja es geht nicht leider kenne ich mich mit maple nicht aus daher hoffe ich das jemand den Fehler hier finden kann
danke (anbei ist auch die maple datei hoffe kann man öffnen)
> restart; with(plots); dgl := diff(C(x), x, [mm] x)-b^2*C(x) [/mm] = 0;
print('output redirected...'); # input placeholder
/ d / d [mm] \\ [/mm] 2
|--- |--- C(x)|| - b C(x) = 0
\ dx \ dx //
> lsg1 := dsolve(dgl, C(x));
print('output redirected...'); # input placeholder
C(x) = _C1 exp(b x) + _C2 exp(-b x)
print('output redirected...'); # input placeholder
x = 0
> lsg2 := dsolve({dgl, D(C)*0 = 0, C(0) = co}, C(x));
%;
Error, (in dsolve) found the following equations not depending on the unknowns of the input system: {0 = 0}
> lsg3 := dsolve({dgl, D(C)*0 = 0, C(1) = c1}, C(x));
%;
Error, (in dsolve) found the following equations not depending on the unknowns of the input system: {0 = 0}
> symplify(%);
print('output redirected...'); # input placeholder
symplify(C(x) = _C1 exp(b x) + _C2 exp(-b x))
> assign(lsg3); b := 1; c1 := 1;
print('output redirected...'); # input placeholder
1
1
> C(x);
print('output redirected...'); # input placeholder
C(x)
> grafik1 := plot(C(x), x = 0 .. .1, color = blue, axes = boxed);
%;
Warning, unable to evaluate the function to numeric values in the region; see the plotting command's help page to ensure the calling sequence is correct
display(grafik1, labels = [x, C], view = [0 .. 0.1, 0 .. 0.1] title and [
0 .. 0.1, 0 .. 0.1] title = 'Konzentration von A')
Dateianhänge: Anhang Nr. 1 (Typ: mw) [nicht öffentlich]
|
|
|
|
Status: |
(Antwort) fertig | Datum: | 11:02 Sa 12.12.2009 | Autor: | Frasier |
Hallo johnypfeffer,
das Problem liegt in der Zeile mit dem lsg2 und lsg3, genauer gesagt bei der Definition der Anfangsbedingungen.
D(C)*0=0, das macht keinen Sinn.
Du meinst sicher D(C)(0)=0.
Datei-Anhang
lg
F.
Musste den Anhang tauschen, da war noch ein Fehler drin.
Dateianhänge: Anhang Nr. 1 (Typ: mw) [nicht öffentlich]
|
|
|
|
|
danke es geht mit deiner Datei
ich habe mal noch zwei Fragen
gibt es ein Icon oder Taste mit der er das beispiel gleich rechnet ich klicke immer von oben bis unten enter durch und was bedeutet [>
|
|
|
|
|
Status: |
(Antwort) fertig | Datum: | 11:57 Sa 12.12.2009 | Autor: | Frasier |
Es gibt das Icon mit den 3 Ausrufezeichen, "Execute the entire worksheet", damit wird jedes Kommando der Reihe nach ausgeführt.
Dieses [> kennzeichnet die Eingabe als Maple Input im Worksheet Mode, siehe dazu in der Hilfe unter Worksheet Mode und Document Mode.
lg
F.
|
|
|
|